all repos — openbox @ 1baea880f4cf18d22bf44b0ea66ff8ad18a7aca7

openbox fork - make it a bit more like ryudo

dont use a global var
Dana Jansens danakj@orodu.net
commit

1baea880f4cf18d22bf44b0ea66ff8ad18a7aca7

parent

05039de135846b69f2ef0741b03afb63318f31ac

1 files changed, 2 insertions(+), 2 deletions(-)

jump to
M scripts/builtins.pyscripts/builtins.py

@@ -269,12 +269,12 @@

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