Skip to content

Commit b760837

Browse files
author
dessant
committed
rename EmacsBehavior active_key_bindings to key_bindings
1 parent 0ce5684 commit b760837

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

kivy/uix/behaviors/emacs.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ def keyboard_on_key_down(self, window, keycode, text, modifiers):
8989
mod = modifiers[0] if modifiers else None
9090
is_emacs_shortcut = False
9191

92-
if key in range(256) and self.active_key_bindings == 'emacs':
92+
if key in range(256) and self.key_bindings == 'emacs':
9393
is_emacs_shortcut = ((mod == 'ctrl' and
9494
chr(key) in self.bindings['ctrl'].keys()) or
9595
(mod == 'alt' and

0 commit comments

Comments
 (0)