summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorfluxgen <fluxgen>2003-06-15 20:09:13 (GMT)
committerfluxgen <fluxgen>2003-06-15 20:09:13 (GMT)
commit80006acde50788d06318d6644bdfda8c1728f1b8 (patch)
tree59cc8a2554e45db170f87bd2dac7e9c267080a33 /src
parent7e04a570e3c1aa6c462041a6fc42d12f01a1f3a4 (diff)
downloadfluxbox_lack-80006acde50788d06318d6644bdfda8c1728f1b8.zip
fluxbox_lack-80006acde50788d06318d6644bdfda8c1728f1b8.tar.bz2
minor stuff
Diffstat (limited to 'src')
-rw-r--r--src/Screen.cc5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/Screen.cc b/src/Screen.cc
index 619bb4a..6db0e0d 100644
--- a/src/Screen.cc
+++ b/src/Screen.cc
@@ -22,7 +22,7 @@
22// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER 22// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
23// DEALINGS IN THE SOFTWARE. 23// DEALINGS IN THE SOFTWARE.
24 24
25// $Id: Screen.cc,v 1.183 2003/06/15 11:52:44 rathnor Exp $ 25// $Id: Screen.cc,v 1.184 2003/06/15 20:09:13 fluxgen Exp $
26 26
27 27
28#include "Screen.hh" 28#include "Screen.hh"
@@ -2415,7 +2415,8 @@ bool BScreen::doSkipWindow(const WinClient &winclient, int opts) {
2415 const FluxboxWindow *win = winclient.fbwindow(); 2415 const FluxboxWindow *win = winclient.fbwindow();
2416 return (!win || 2416 return (!win ||
2417 (opts & CYCLESKIPSTUCK) != 0 && win->isStuck() || // skip if stuck 2417 (opts & CYCLESKIPSTUCK) != 0 && win->isStuck() || // skip if stuck
2418 (opts & CYCLEGROUPS) != 0 && win->winClient() != winclient.window() || // skip if not active client (i.e. only visit each fbwin once) 2418 // skip if not active client (i.e. only visit each fbwin once)
2419 (opts & CYCLEGROUPS) != 0 && win->winClient() != winclient.window() ||
2419 (opts & CYCLESKIPSHADED) != 0 && win->isShaded() // skip if shaded 2420 (opts & CYCLESKIPSHADED) != 0 && win->isShaded() // skip if shaded
2420 ); 2421 );
2421} 2422}