We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2359f09 commit 2a70affCopy full SHA for 2a70aff
lib/matplotlib/backends/backend_qt4.py
@@ -87,8 +87,10 @@
87
SPECIAL_KEYS.update({QtCore.Qt.Key_Control: 'super', # cmd/apple key
88
QtCore.Qt.Key_Meta: 'control',
89
})
90
- MODIFIER_KEYS[0] = ('super', QtCore.Qt.ControlModifier, QtCore.Qt.Key_Control)
91
- MODIFIER_KEYS[2] = ('ctrl', QtCore.Qt.MetaModifier, QtCore.Qt.Key_Meta)
+ MODIFIER_KEYS[0] = ('super', QtCore.Qt.ControlModifier,
+ QtCore.Qt.Key_Control)
92
+ MODIFIER_KEYS[2] = ('ctrl', QtCore.Qt.MetaModifier,
93
+ QtCore.Qt.Key_Meta)
94
95
96
def fn_name():
0 commit comments