From 10d53fc7d200b9cc86ca7302c410558e5d917976 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Florian=20M=C3=BCllner?= Date: Tue, 3 Jul 2012 21:52:24 +0200 Subject: [PATCH] window: Do not restore tiling on unmaximize When we consider tiling a special case of maximization, it makes more sense to always unmaximize to the normal state rather than restoring a previous tile state. https://bugzilla.gnome.org/show_bug.cgi?id=677565 --- src/core/window.c | 9 --------- 1 file changed, 9 deletions(-) diff --git a/src/core/window.c b/src/core/window.c index 93422aa1a..4c754b6c3 100644 --- a/src/core/window.c +++ b/src/core/window.c @@ -3889,15 +3889,6 @@ void meta_window_unmaximize (MetaWindow *window, MetaMaximizeFlags directions) { - /* Restore tiling if necessary */ - if (window->tile_mode == META_TILE_LEFT || - window->tile_mode == META_TILE_RIGHT) - { - window->maximized_horizontally = FALSE; - meta_window_tile (window); - return; - } - meta_window_unmaximize_internal (window, directions, &window->saved_rect, NorthWestGravity); }