missing a )

This commit is contained in:
Dana Jansens 2003-02-05 10:56:29 +00:00
parent 04d0839888
commit bdbbfd6cff

View file

@ -37,7 +37,7 @@ ob.kbind(["A-F4"], ob.KeyContext.All, callbacks.close)
# focus bindings
import stackedcycle # functions for doing stacked 'kde-style' cycling
ob.kbind(["A-Tab"], ob.KeyContext.All, stackedcycle.next)
ob.kbind(["A-S-Tab"], ob.KeyContext.All, stackedcycle.previous
ob.kbind(["A-S-Tab"], ob.KeyContext.All, stackedcycle.previous)
# if you want linear cycling instead of stacked cycling, comment out the focus
# bindings above, and use these instead.