]> Dogcows Code - chaz/openbox/commitdiff
make Escape abort cycling
authorDana Jansens <danakj@orodu.net>
Tue, 4 Feb 2003 09:01:38 +0000 (09:01 +0000)
committerDana Jansens <danakj@orodu.net>
Tue, 4 Feb 2003 09:01:38 +0000 (09:01 +0000)
scripts/stackedcycle.py

index 633728ce81345c86c03823f1ee007f5492d90787..791a93a2f615cd3e8fbc88b90f6a2df394ddd5a2 100644 (file)
@@ -197,16 +197,24 @@ class cycledata:
             self.activatetarget(0) # activate, but dont deiconify/unshade/raise
 
     def grabfunc(self, data):
-        if data.action == ob.KeyAction.Release:
-            # have all the modifiers this started with been released?
-            if not self.state & data.state:
-                self.cycling = 0
-                focus._disable = 0
-                self.activatetarget(1) # activate, and deiconify/unshade/raise
-                self.destroypopup()
-                ob.kungrab()
-                ob.mungrab()
+        done = 0
+        # have all the modifiers this started with been released?
+        if (data.action == ob.KeyAction.Release and
+            not self.state & data.state):
+            done = 1
+        # has Escape been pressed?
+        if data.action == ob.KeyAction.Press and data.key == "Escape":
+            done = 1
+            # revert
+            self.menupos = 0
 
+        if done:
+            self.cycling = 0
+            focus._disable = 0
+            self.activatetarget(1) # activate, and deiconify/unshade/raise
+            self.destroypopup()
+            ob.kungrab()
+            ob.mungrab()
 
 def _newwindow(data):
     if _o.cycling: _o.populatelist()
This page took 0.022474 seconds and 4 git commands to generate.