mirror of
https://github.com/brl/mutter.git
synced 2025-07-24 02:18:02 +00: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:

committed by
Elijah Newren

parent
b0d15aa44f
commit
0a95c706bf
@@ -1131,7 +1131,7 @@ set_net_wm_state (MetaWindow *window)
|
||||
data[i] = window->display->atom_net_wm_state_fullscreen;
|
||||
++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;
|
||||
++i;
|
||||
|
Reference in New Issue
Block a user