]> Dogcows Code - chaz/openbox/commitdiff
dont use a global var
authorDana Jansens <danakj@orodu.net>
Fri, 10 Jan 2003 09:47:43 +0000 (09:47 +0000)
committerDana Jansens <danakj@orodu.net>
Fri, 10 Jan 2003 09:47:43 +0000 (09:47 +0000)
scripts/builtins.py

index 4204d315be609d22fddb6cd2a7ce601c7f56f3eb..16a164216087497263b2f76d2641a88d4c81ec00 100644 (file)
@@ -269,12 +269,12 @@ def setup_scroll():
     mbind("C-A-4", MC_Frame, MouseClick, send_to_next_desktop)
     mbind("C-A-5", MC_Frame, MouseClick, send_to_prev_desktop)
 
-focus_stack = []
 def setup_fallback_focus():
     """Sets up a focus fallback routine so that when no windows are focused,
        the last window on the desktop that had focus will be focused."""
+    focus_stack = []
     def focused(data):
-        global focus_stack
+        #global focus_stack
         if data.client:
             window = data.client.window()
             # add to front the stack
This page took 0.027638 seconds and 4 git commands to generate.