diff options
| author | Dana Jansens <danakj@orodu.net> | 2003-02-04 11:03:57 +0000 |
|---|---|---|
| committer | Dana Jansens <danakj@orodu.net> | 2003-02-04 11:03:57 +0000 |
| commit | 220b5c40f91c6509951ccd0d506a9bd77d9d6bac (patch) | |
| tree | 8919e4cad1b94beff0967f59418aedaad0f952d7 /scripts/focuscycle.py | |
| parent | 7e3a0b227c26739cf562fe58769487976b7be604 (diff) | |
make python config variables very visible by making them all capitals. cleaner nicer documentation in the py modules. make public functions more visible.
Diffstat (limited to 'scripts/focuscycle.py')
| -rw-r--r-- | scripts/focuscycle.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/focuscycle.py b/scripts/focuscycle.py index 36354af2..770bbfb3 100644 --- a/scripts/focuscycle.py +++ b/scripts/focuscycle.py @@ -5,7 +5,7 @@ ########################################################################### ### Options that affect the behavior of the focuscycle module. ### ########################################################################### -raise_window = 1 +RAISE_WINDOW = 1 """When cycling focus, raise the window chosen as well as focusing it. This does not affect fallback focusing behavior.""" # See focus.avoid_skip_taskbar @@ -58,7 +58,7 @@ def _cycle(data, num, forward): while 1: client = screen.client(t) if client and focus._focusable(client, desktop) and client.focus(): - if raise_window: + if RAISE_WINDOW: screen.raiseWindow(client) return if forward: |
