summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorDana Jansens <danakj@orodu.net>2003-01-28 05:38:32 +0000
committerDana Jansens <danakj@orodu.net>2003-01-28 05:38:32 +0000
commit98a131603cfb09d01d13086f31955841fbed5dfc (patch)
tree30e9f7bc321ae327e90253d3f26930a16ff4b080 /scripts
parent289e5e747ec1a5a611981b7e40cc46564a836e0c (diff)
stacked_cycle_popup_list done
Diffstat (limited to 'scripts')
-rw-r--r--scripts/focus.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/scripts/focus.py b/scripts/focus.py
index 81d6c8d7..a80f9bb8 100644
--- a/scripts/focus.py
+++ b/scripts/focus.py
@@ -10,7 +10,7 @@ cycle_raise = 1 ###
# raise as you cycle in stacked mode ###
stacked_cycle_raise = 0 ###
# show a pop-up list of windows while cycling ###
-cycle_popup_list = 1
+stacked_cycle_popup_list = 1 ###
# send focus somewhere when nothing is left with the focus, if possible ###
fallback = 0 ###
### ###
@@ -211,8 +211,8 @@ def focus_next_stacked(data, forward=1):
_cyc_screen = data.screen
_doing_stacked = 1
- global cycle_popup_list
- if cycle_popup_list:
+ global stacked_cycle_popup_list
+ if stacked_cycle_popup_list:
_create_popup_list(data)
ob.kgrab(data.screen, _focus_stacked_ungrab)