Fix issue with show desktop hiding icons

For #36
This commit is contained in:
jderose9
2017-03-04 17:58:31 -05:00
parent 7ae3c4e75c
commit 69f1f5eb2a

View File

@@ -453,7 +453,7 @@ const dtpPanel = new Lang.Class({
} else {
let current_workspace = global.screen.get_active_workspace();
let windows = current_workspace.list_windows().filter(function (w) {
return w.showing_on_its_workspace();
return w.showing_on_its_workspace() && !w.skip_taskbar;
});
windows = global.display.sort_windows_by_stacking(windows);