You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
then the window always reverts to what I set in my_application.cc via gtk_window_set_default_size(window, width, height);
It'd be great if we could add a Linux only setDefaultSize method to the plugin that would allows us to set gtk_window_set_default_size from Flutter, as setSize(size) doesn't work when setResizable(false)
The text was updated successfully, but these errors were encountered:
I'm observing that on Linux
await windowManager.setResizable(false);
disables our ability to useawait setSize(size)
.If I reenable resizing, set the size, then disable resizing like below:
then the window always reverts to what I set in
my_application.cc
viagtk_window_set_default_size(window, width, height);
It'd be great if we could add a Linux only setDefaultSize method to the plugin that would allows us to set
gtk_window_set_default_size
from Flutter, assetSize(size)
doesn't work whensetResizable(false)
The text was updated successfully, but these errors were encountered: