From de8c9e4c58d32bc2bb05c104ce1d61e5bacd9d90 Mon Sep 17 00:00:00 2001 From: Leon Davison Date: Sun, 14 May 2017 14:37:17 +1200 Subject: [PATCH] Fix comments for paste in textinput.py Issue: [#5172] (https://github.com/kivy/kivy/issues/5172) --- kivy/uix/textinput.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/kivy/uix/textinput.py b/kivy/uix/textinput.py index dc64990438..b5e2169044 100644 --- a/kivy/uix/textinput.py +++ b/kivy/uix/textinput.py @@ -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 @@ -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()