forked from AuroraMiddleware/gtk
gtk-demo: Fix the size saving for CSD
We need to use gtk_window_get_size to get the correct size that we can pass to gtk_window_set_default_size regardless of CSD or not.
This commit is contained in:
parent
601e762973
commit
fc90bd5e30
@ -487,10 +487,7 @@ demo_application_window_size_allocate (GtkWidget *widget,
|
||||
GTK_WIDGET_CLASS (demo_application_window_parent_class)->size_allocate (widget, allocation);
|
||||
|
||||
if (!window->maximized && !window->fullscreen)
|
||||
{
|
||||
window->width = allocation->width;
|
||||
window->height = allocation->height;
|
||||
}
|
||||
gtk_window_get_size (GTK_WINDOW (window), &window->width, &window->height);
|
||||
}
|
||||
|
||||
static gboolean
|
||||
|
Loading…
Reference in New Issue
Block a user