Thanks to visit codestin.com Credit goes to github.com
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 debb95f commit 5302effCopy full SHA for 5302eff
1 file changed
lib/matplotlib/backends/backend_qt4.py
@@ -337,7 +337,7 @@ def _get_key( self, event ):
337
# prepend the ctrl, alt, super keys if appropriate (sorted in that order)
338
for modifier, prefix, Qt_key in self._modifier_keys:
339
if event.key() != Qt_key and int(event.modifiers()) & modifier == modifier:
340
- key = u'{}+{}'.format(prefix, key)
+ key = u'{0}+{1}'.format(prefix, key)
341
342
return key
343
0 commit comments