From: Dana Jansens Date: Wed, 19 Feb 2003 21:03:17 +0000 (+0000) Subject: use the new config system.. a bit.. X-Git-Url: https://git.dogcows.com/gitweb?a=commitdiff_plain;h=8ba0586bcbdc7fe9648f1063812126d71a041670;p=chaz%2Fopenbox use the new config system.. a bit.. --- diff --git a/scripts/cycle.py b/scripts/cycle.py index 5a518652..f77f3d8a 100644 --- a/scripts/cycle.py +++ b/scripts/cycle.py @@ -1,4 +1,4 @@ -import ob, otk +import ob, otk, config class _Cycle: """ This is a basic cycling class for anything, from xOr's stackedcycle.py, @@ -298,7 +298,8 @@ class _CycleWindows(_Cycle): if not client.normal(): return 0 if not (client.canFocus() or client.focusNotify()): return 0 - if focus.AVOID_SKIP_TASKBAR and client.skipTaskbar(): return 0 + if config.get('focus', 'avoid_skip_taskbar') and client.skipTaskbar(): + return 0 if client.iconic(): if self.INCLUDE_ICONS: @@ -390,7 +391,8 @@ class _CycleWindowsLinear(_CycleWindows): if not client.normal(): return 0 if not (client.canFocus() or client.focusNotify()): return 0 - if focus.AVOID_SKIP_TASKBAR and client.skipTaskbar(): return 0 + if config.get('focus', 'avoid_skip_taskbar') and client.skipTaskbar(): + return 0 if client.iconic(): return 0 if self.INCLUDE_OMNIPRESENT and desk == 0xffffffff: return 1