aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/FocusControl.cc4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/FocusControl.cc b/src/FocusControl.cc
index f49db32..341ad0d 100644
--- a/src/FocusControl.cc
+++ b/src/FocusControl.cc
@@ -56,9 +56,7 @@ bool doSkipWindow(const Focusable &win, const ClientPattern *pat) {
56 return true; // skip if no fbwindow or if focushidden 56 return true; // skip if no fbwindow or if focushidden
57 if (pat && !pat->match(win)) 57 if (pat && !pat->match(win))
58 return true; // skip if it doesn't match the pattern 58 return true; // skip if it doesn't match the pattern
59 if (fbwin->workspaceNumber() != win.screen().currentWorkspaceID() && 59
60 !fbwin->isStuck())
61 return true; // for now, we only cycle through the current workspace
62 return false; // else don't skip 60 return false; // else don't skip
63} 61}
64 62