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:
Elijah Newren 2005-01-27 18:23:51 +00:00 committed by Elijah Newren
parent b0d15aa44f
commit 0a95c706bf
2 changed files with 6 additions and 1 deletions

View File

@ -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>
Stick and unstick transients with their parent automatically.

View File

@ -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;