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>
|
2003-08-18 Rob Adams <robadams@ucla.edu>
|
||||||
|
|
||||||
* src/constraints.c (meta_window_constrain): recalculate frame
|
* src/constraints.c (meta_window_constrain): recalculate frame
|
||||||
|
@ -264,9 +264,11 @@ get_standalone_layer (MetaWindow *window)
|
|||||||
is_focused_foreach,
|
is_focused_foreach,
|
||||||
&focused_transient);
|
&focused_transient);
|
||||||
|
|
||||||
if ((window->has_focus || focused_transient ||
|
if (window->wm_state_below)
|
||||||
(window == window->display->expected_focus_window)) &&
|
layer = META_LAYER_BOTTOM;
|
||||||
(window->fullscreen || window_is_fullscreen_size (window)))
|
else if ((window->has_focus || focused_transient ||
|
||||||
|
(window == window->display->expected_focus_window)) &&
|
||||||
|
(window->fullscreen || window_is_fullscreen_size (window)))
|
||||||
layer = META_LAYER_FULLSCREEN;
|
layer = META_LAYER_FULLSCREEN;
|
||||||
else if (window->wm_state_above)
|
else if (window->wm_state_above)
|
||||||
layer = META_LAYER_DOCK;
|
layer = META_LAYER_DOCK;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user