mirror of
https://github.com/brl/mutter.git
synced 2024-11-25 01:20:42 -05:00
shaded windows should not show up in pagers. Fixes #165377.
2005-01-27 Elijah Newren <newren@gmail.com> * src/window.c: (set_net_wm_state): shaded windows should not show up in pagers. Fixes #165377.
This commit is contained in:
parent
b0d15aa44f
commit
0a95c706bf
@ -1,3 +1,8 @@
|
|||||||
|
2005-01-27 Elijah Newren <newren@gmail.com>
|
||||||
|
|
||||||
|
* src/window.c: (set_net_wm_state): shaded windows should not show
|
||||||
|
up in pagers. Fixes #165377.
|
||||||
|
|
||||||
2005-01-26 Elijah Newren <newren@gmail.com>
|
2005-01-26 Elijah Newren <newren@gmail.com>
|
||||||
|
|
||||||
Stick and unstick transients with their parent automatically.
|
Stick and unstick transients with their parent automatically.
|
||||||
|
@ -1131,7 +1131,7 @@ set_net_wm_state (MetaWindow *window)
|
|||||||
data[i] = window->display->atom_net_wm_state_fullscreen;
|
data[i] = window->display->atom_net_wm_state_fullscreen;
|
||||||
++i;
|
++i;
|
||||||
}
|
}
|
||||||
if (!window_showing_on_its_workspace (window))
|
if (!window_showing_on_its_workspace (window) || window->shaded)
|
||||||
{
|
{
|
||||||
data[i] = window->display->atom_net_wm_state_hidden;
|
data[i] = window->display->atom_net_wm_state_hidden;
|
||||||
++i;
|
++i;
|
||||||
|
Loading…
Reference in New Issue
Block a user