put windows with wm_state_below at the bottom. Make this higher priority
2003-08-19 Rob Adams <robadams@uclu.edu> * src/stack.c (get_standalone_layer): put windows with wm_state_below at the bottom. Make this higher priority than full screen layer; see #120238.
This commit is contained in:
parent
5ea067a1d8
commit
a2b6ff6d42
@ -1,3 +1,9 @@
|
||||
2003-08-19 Rob Adams <robadams@uclu.edu>
|
||||
|
||||
* src/stack.c (get_standalone_layer): put windows with
|
||||
wm_state_below at the bottom. Make this higher priority than full
|
||||
screen layer; see #120238.
|
||||
|
||||
2003-08-18 Rob Adams <robadams@ucla.edu>
|
||||
|
||||
* src/constraints.c (meta_window_constrain): recalculate frame
|
||||
|
@ -264,9 +264,11 @@ get_standalone_layer (MetaWindow *window)
|
||||
is_focused_foreach,
|
||||
&focused_transient);
|
||||
|
||||
if ((window->has_focus || focused_transient ||
|
||||
(window == window->display->expected_focus_window)) &&
|
||||
(window->fullscreen || window_is_fullscreen_size (window)))
|
||||
if (window->wm_state_below)
|
||||
layer = META_LAYER_BOTTOM;
|
||||
else if ((window->has_focus || focused_transient ||
|
||||
(window == window->display->expected_focus_window)) &&
|
||||
(window->fullscreen || window_is_fullscreen_size (window)))
|
||||
layer = META_LAYER_FULLSCREEN;
|
||||
else if (window->wm_state_above)
|
||||
layer = META_LAYER_DOCK;
|
||||
|
Loading…
Reference in New Issue
Block a user