summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJonas Ådahl <jadahl@gmail.com>2015-09-16 14:20:24 +0800
committerJonas Ådahl <jadahl@gmail.com>2015-09-24 11:39:37 +0800
commita9df4bb81adb0435cd8eeb6a634c963ba33784a7 (patch)
treeabd39b34b83cc3017805156dbcf0cad1ffb7d6cc
parentbc9e63d3db9d057b2873c99a7b0fc4d668bf611f (diff)
downloadmutter-a9df4bb81adb0435cd8eeb6a634c963ba33784a7.tar.gz
wayland: Scale saved rect changing monitor scale
The saved rect is used to restore a saved window size. We need to update this when the window is moved to a monitor with different scale, so that if we unmaximize a window which was moved to a different monitor while maximized (for example when unplugged) will restore to the correct size. https://bugzilla.gnome.org/show_bug.cgi?id=755097
-rw-r--r--src/wayland/meta-window-wayland.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/wayland/meta-window-wayland.c b/src/wayland/meta-window-wayland.c
index 8e1be30aa..8129cb80c 100644
--- a/src/wayland/meta-window-wayland.c
+++ b/src/wayland/meta-window-wayland.c
@@ -362,6 +362,7 @@ meta_window_wayland_main_monitor_changed (MetaWindow *window,
/* Window size. */
scale_rect_size (&window->rect, scale_factor);
scale_rect_size (&window->unconstrained_rect, scale_factor);
+ scale_rect_size (&window->saved_rect, scale_factor);
/* Window geometry offset (XXX: Need a better place, see
* meta_window_wayland_move_resize). */