Don't temporarily show minimized windows while switching workspaces

This commit is contained in:
Dan Winship 2009-05-11 13:06:42 -04:00
parent e365a0ba7a
commit 0f2860b588

View File

@ -320,6 +320,10 @@ WindowManager.prototype = {
for (let i = 0; i < windows.length; i++) {
let window = windows[i];
if (!window.meta_window.showing_on_its_workspace())
continue;
if (window.get_workspace() == from) {
switchData.windows.push({ window: window,
parent: window.get_parent() });