Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/util/gtkcompat.py
diff options
context:
space:
mode:
authorC. Scott Ananian <cscott@cscott.net>2011-11-10 23:34:19 (GMT)
committer C. Scott Ananian <cscott@cscott.net>2011-11-10 23:34:19 (GMT)
commitb12bba9b4af86a39130665cc1542a8b1c67e94f5 (patch)
tree7ce27bd84cf27d9f571a51d2da50b43af0e4e0ff /util/gtkcompat.py
parent7eea429e0ccce5433b82523ed7809e2a1abd8bf3 (diff)
Gdk.CONTROL_MASK -> Gdk.ModifierType.CONTROL_MASK. (bugfix)
Diffstat (limited to 'util/gtkcompat.py')
-rw-r--r--util/gtkcompat.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/util/gtkcompat.py b/util/gtkcompat.py
index 87622b8..06df7d3 100644
--- a/util/gtkcompat.py
+++ b/util/gtkcompat.py
@@ -60,12 +60,12 @@ except ValueError, ImportError:
BUTTON_RELEASE_MASK = Gdk.BUTTON_RELEASE_MASK
POINTER_MOTION_MASK = Gdk.POINTER_MOTION_MASK
KEY_PRESS_MASK = Gdk.KEY_PRESS_MASK
- CONTROL_MASK = Gdk.CONTROL_MASK
VISIBILITY_NOTIFY_MASK = Gdk.VISIBILITY_NOTIFY_MASK
Gdk.EventMask = GdkEventMask
class GdkModifierType:
MOD1_MASK = Gdk.MOD1_MASK
+ CONTROL_MASK = Gdk.CONTROL_MASK
Gdk.ModifierType = GdkModifierType
class GdkPixbuf: