Skip to content

Commit

Permalink
Fix comments for paste in textinput.py
Browse files Browse the repository at this point in the history
Issue: [kivy#5172] (kivy#5172)
  • Loading branch information
Leon-Davison authored May 14, 2017
1 parent 5961169 commit de8c9e4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions kivy/uix/textinput.py
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ def insert_text(self, substring, from_undo=False):
Right
Control + c Copy selection
Control + x Cut selection
Control + p Paste selection
Control + v Paste clipboard content
Control + a Select all the content
Control + z undo
Control + r redo
Expand Down Expand Up @@ -2402,7 +2402,7 @@ def keyboard_on_key_down(self, window, keycode, text, modifiers):
self._cut(self.selection_text)
elif key == ord('c'): # copy selection
self.copy()
elif key == ord('v'): # paste selection
elif key == ord('v'): # paste clipboard content
self.paste()
elif key == ord('a'): # select all
self.select_all()
Expand Down

0 comments on commit de8c9e4

Please sign in to comment.