Skip to content

Commit

Permalink
Merge pull request kivy#5177 from Leon-Davison/textinput_comments_paste
Browse files Browse the repository at this point in the history
Fix comments for paste in textinput.py
  • Loading branch information
dessant authored May 14, 2017
2 parents 5961169 + de8c9e4 commit c96aa73
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 c96aa73

Please sign in to comment.