mirror of
https://github.com/brl/mutter.git
synced 2024-11-23 00:20:42 -05:00
window: Handle layer of DESKTOP windows
Assigning the corresponding stack layer of DESKTOP windows is currently X11 specific, because there is no way for wayland clients to set the DESKTOP window type. This is about to change, so move the code to the generic layer handling. Part-of: <https://gitlab.gnome.org/GNOME/mutter/-/merge_requests/3305>
This commit is contained in:
parent
3a5ecca348
commit
b9008ee83d
@ -6137,6 +6137,8 @@ meta_window_get_default_layer (MetaWindow *window)
|
||||
return META_LAYER_BOTTOM;
|
||||
else if (window->wm_state_above && !META_WINDOW_MAXIMIZED (window))
|
||||
return META_LAYER_TOP;
|
||||
else if (window->type == META_WINDOW_DESKTOP)
|
||||
return META_LAYER_DESKTOP;
|
||||
else
|
||||
return META_LAYER_NORMAL;
|
||||
}
|
||||
|
@ -1920,10 +1920,6 @@ get_standalone_layer (MetaWindow *window)
|
||||
|
||||
switch (window->type)
|
||||
{
|
||||
case META_WINDOW_DESKTOP:
|
||||
layer = META_LAYER_DESKTOP;
|
||||
break;
|
||||
|
||||
case META_WINDOW_DOCK:
|
||||
if (window->wm_state_below ||
|
||||
(window->monitor && window->monitor->in_fullscreen))
|
||||
|
Loading…
Reference in New Issue
Block a user