From 3168d3b5e6e166487b68415eb64a894883d49825 Mon Sep 17 00:00:00 2001 From: "Jasper St. Pierre" Date: Wed, 21 May 2014 13:22:59 -0400 Subject: [PATCH] window: Move the extents storage above the rects So all the rects are grouped together. --- src/core/window-private.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/core/window-private.h b/src/core/window-private.h index 7d7343faf..b68d44af9 100644 --- a/src/core/window-private.h +++ b/src/core/window-private.h @@ -400,6 +400,9 @@ struct _MetaWindow /* window that gets updated net_wm_user_time values */ Window user_time_window; + gboolean has_custom_frame_extents; + GtkBorder custom_frame_extents; + /* The size we set the window to last (i.e. what we believe * to be its actual size on the server). The x, y are * the actual server-side x,y so are relative to the frame @@ -409,9 +412,6 @@ struct _MetaWindow */ MetaRectangle rect; - gboolean has_custom_frame_extents; - GtkBorder custom_frame_extents; - /* The geometry to restore when we unmaximize. The position is in * root window coords, even if there's a frame, which contrasts with * window->rect above. Note that this gives the position and size