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 ccb923e commit 7cdd61fCopy full SHA for 7cdd61f
1 file changed
lib/matplotlib/backends/backend_tkagg.py
@@ -467,7 +467,7 @@ def _get_key(self, event):
467
# note, shift is not added to the keys as this is already accounted for
468
for bitmask, prefix, key_name in modifiers:
469
if event.state & (1 << bitmask) and key_name not in key:
470
- key = '{}+{}'.format(prefix, key)
+ key = '{0}+{1}'.format(prefix, key)
471
472
return key
473
0 commit comments