[mutter] Update window->has_resize_func at the right time when unfullscreening



commit ba31ba46159e6cbd7fae962f097bad97f87e5a39
Author: Owen W. Taylor <otaylor fishsoup net>
Date:   Mon Oct 17 14:56:56 2011 -0400

    Update window->has_resize_func at the right time when unfullscreening
    
    Since the frame window size that meta_window_move_resize() uses depends
    on whether the window has horizontal/vertical resize functionality, we
    need to update this flag before we resize the window.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=659854

 src/core/window.c |    8 +++++---
 1 files changed, 5 insertions(+), 3 deletions(-)
---
diff --git a/src/core/window.c b/src/core/window.c
index 4ef9532..6a574b0 100644
--- a/src/core/window.c
+++ b/src/core/window.c
@@ -3906,6 +3906,11 @@ meta_window_unmake_fullscreen (MetaWindow  *window)
        */
       ensure_size_hints_satisfied (&target_rect, &window->size_hints);
 
+      /* Need to update window->has_resize_func before we move_resize()
+       */
+      recalc_window_features (window);
+      set_net_wm_state (window);
+
       meta_window_move_resize (window,
                                FALSE,
                                target_rect.x,
@@ -3919,9 +3924,6 @@ meta_window_unmake_fullscreen (MetaWindow  *window)
 
       meta_window_update_layer (window);
 
-      recalc_window_features (window);
-      set_net_wm_state (window);
-
       g_object_notify (G_OBJECT (window), "fullscreen");
     }
 }



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]