Don't guess at what the key combo for paste is

wilder-5.14
David Edmundson 11 years ago
parent 975e5009c1
commit 078c1c5c33
  1. 2
      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 = "";

Loading…
Cancel
Save