From b471b912d68a05711a95a3c0e033c0577262f18e Mon Sep 17 00:00:00 2001 From: Omar Zeidan Date: Sat, 2 Dec 2017 20:19:12 +0100 Subject: Implemented simple corner tiling by mouse drag --- src/core/keybindings.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'src/core/keybindings.c') diff --git a/src/core/keybindings.c b/src/core/keybindings.c index fd17b49d..8006c9e1 100644 --- a/src/core/keybindings.c +++ b/src/core/keybindings.c @@ -1457,7 +1457,9 @@ process_mouse_move_resize_grab (MetaDisplay *display, meta_window_maximize (window, META_MAXIMIZE_HORIZONTAL | META_MAXIMIZE_VERTICAL); - else if (window->tile_mode == META_TILE_LEFT || window->tile_mode == META_TILE_RIGHT) + else if (window->tile_mode == META_TILE_LEFT || + window->tile_mode == META_TILE_RIGHT|| + META_WINDOW_QUARTER_TILED(window)) meta_window_tile (window); else if (!display->grab_wireframe_active) meta_window_move_resize (display->grab_window, -- cgit v1.2.1