mirror of
https://github.com/brl/mutter.git
synced 2025-02-08 17:44:09 +00:00
Revert "window: Raise and lower tile match in tandem"
Raising and lowering windows in tandem without a proper grouping mechanism ended up being more annoying than functional. This reverts commit e76a0f564c1e07e32fe857d0f8e5b723c3bbe57d.
This commit is contained in:
parent
675d429ba0
commit
00b8ca7aeb
@ -4958,13 +4958,7 @@ meta_window_raise (MetaWindow *window)
|
|||||||
* the child windows appropriately.
|
* the child windows appropriately.
|
||||||
*/
|
*/
|
||||||
if (window->screen->stack == ancestor->screen->stack)
|
if (window->screen->stack == ancestor->screen->stack)
|
||||||
{
|
|
||||||
/* If the window has a tile sibling, raise it before raising the window itself */
|
|
||||||
if (window->tile_match)
|
|
||||||
meta_stack_raise (window->tile_match->screen->stack, window->tile_match);
|
|
||||||
|
|
||||||
meta_stack_raise (window->screen->stack, ancestor);
|
meta_stack_raise (window->screen->stack, ancestor);
|
||||||
}
|
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
meta_warning (
|
meta_warning (
|
||||||
@ -4996,10 +4990,6 @@ meta_window_lower (MetaWindow *window)
|
|||||||
meta_topic (META_DEBUG_WINDOW_OPS,
|
meta_topic (META_DEBUG_WINDOW_OPS,
|
||||||
"Lowering window %s\n", window->desc);
|
"Lowering window %s\n", window->desc);
|
||||||
|
|
||||||
/* If the window has a tile sibling, lower it before loweting the window itself */
|
|
||||||
if (window->tile_match)
|
|
||||||
meta_stack_lower (window->tile_match->screen->stack, window->tile_match);
|
|
||||||
|
|
||||||
meta_stack_lower (window->screen->stack, window);
|
meta_stack_lower (window->screen->stack, window);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user