1
0
Fork 0

Make entire side of screen edge-tiling not maximization

If dragging the title bar to the edge of the screen to side-tile,
it's easy to end up above the workarea and end up maximized instead.
Make the entire side of the screen act as edge-tiling.

https://bugzilla.gnome.org/show_bug.cgi?id=644961
This commit is contained in:
Owen W. Taylor 2011-03-16 17:50:59 -04:00
parent 9043191927
commit 96c43866b1

View file

@ -8137,6 +8137,8 @@ update_move (MetaWindow *window,
window->tile_mode = META_TILE_NONE;
}
}
else
window->tile_mode = META_TILE_NONE;
/* For maximized tiling we are interested in the outside top edge
* of the work area of the monitor where the pointer is located.
@ -8145,7 +8147,7 @@ update_move (MetaWindow *window,
* don't want to force users to maximize windows they are placing
* near the top of their screens.
*/
if (meta_window_can_tile_maximized (window))
if (window->tile_mode == META_TILE_NONE && meta_window_can_tile_maximized (window))
{
if (x >= monitor->rect.x &&
x < (monitor->rect.x + monitor->rect.width))