From 078c1c5c33d1a7b63978f5126c3181d3b1c2d824 Mon Sep 17 00:00:00 2001 From: David Edmundson Date: Sat, 28 Mar 2015 15:17:39 +0100 Subject: [PATCH] Don't guess at what the key combo for paste is --- applets/clipboard/contents/ui/ClipboardPage.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/applets/clipboard/contents/ui/ClipboardPage.qml b/applets/clipboard/contents/ui/ClipboardPage.qml index 754c0e302..a8b1b8560 100644 --- a/applets/clipboard/contents/ui/ClipboardPage.qml +++ b/applets/clipboard/contents/ui/ClipboardPage.qml @@ -64,7 +64,7 @@ ColumnLayout { } if (event.text != "" && !filter.activeFocus) { clipboardMenu.view.currentIndex = -1 - if (event.text == "v" && event.modifiers & Qt.ControlModifier) { + if (event.matches(StandardKey.Paste)) { filter.paste(); } else { filter.text = "";