Do not display windows with skip-taskbar hint in overview.
This fixes the bug where the empathy buddy list is always visible on the last workspace it was shown on, even if it was closed.
This commit is contained in:
@ -364,6 +364,9 @@ shell_app_monitor_is_window_usage_tracked (MetaWindow *window)
|
|||||||
if (!window_is_tracked (window))
|
if (!window_is_tracked (window))
|
||||||
return FALSE;
|
return FALSE;
|
||||||
|
|
||||||
|
if (meta_window_is_skip_taskbar (window))
|
||||||
|
return FALSE;
|
||||||
|
|
||||||
switch (meta_window_get_window_type (window))
|
switch (meta_window_get_window_type (window))
|
||||||
{
|
{
|
||||||
/* Definitely ignore these. */
|
/* Definitely ignore these. */
|
||||||
|
Reference in New Issue
Block a user