Changeset 5e5ff8c70c8971fb4a242ece716271ff9f3b7999 for sx-clientbuttons
- Timestamp:
- 06/28/2009 10:50:08 AM (13 months ago)
- Children:
- 967d93d476267fe64bad1eac66b82ff727f969e8
- Parents:
- 5fb2ad4f7839860a1152ff82fcef728693203580
- git-committer:
- dunk <dunk@inspo.(none)> / 2009-06-28T10:50:08Z+0100
- Files:
-
- 1 modified
-
sx-clientbuttons/sxclientbuttons.py (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
sx-clientbuttons/sxclientbuttons.py
r880d60 r5e5ff8 89 89 # grab the specific button and modifier to allow the app to keep working! 90 90 for modifier, button in self.bindings.iterkeys(): 91 client. actor.grab_button(EventMask.ButtonPress,91 client.window.grab_button(EventMask.ButtonPress, 92 92 button, 93 93 modifier, … … 97 97 ) 98 98 99 client. actor.push_handlers(on_button_press=on_button_press)99 client.window.push_handlers(on_button_press=on_button_press) 100 100 101 101 def on_unmanage_client(self, screen, client): … … 103 103 if client.actor.valid: 104 104 for modifier, button in self.bindings.iterkeys(): 105 client. actor.ungrab_button(button, modifier)105 client.window.ungrab_button(button, modifier) 106 106 107 107
