summary refs log tree commit diff
diff options
context:
space:
mode:
authorLoren Burkholder <computersemiexpert@outlook.com>2021-06-11 21:05:18 -0400
committerLoren Burkholder <computersemiexpert@outlook.com>2021-07-20 21:47:32 -0400
commit908629bec0ff490b42aa1f0b1c8fade160606e96 (patch)
tree6d7932f2596f46a5d4d3b9a1f4dc593ffb064a88
parentAdd close on Escape shortcut (diff)
downloadnheko-908629bec0ff490b42aa1f0b1c8fade160606e96.tar.xz
Fix item that accept() is called on
-rw-r--r--resources/qml/InviteDialog.qml4
1 files changed, 2 insertions, 2 deletions
diff --git a/resources/qml/InviteDialog.qml b/resources/qml/InviteDialog.qml

index 3470a7f1..8ba0f262 100644 --- a/resources/qml/InviteDialog.qml +++ b/resources/qml/InviteDialog.qml
@@ -31,7 +31,7 @@ ApplicationWindow { // TODO: make this work in the TextField Shortcut { sequence: "Ctrl+Enter" - onActivated: inviteDialogRoot.accept() + onActivated: invitees.accept() } Shortcut { @@ -63,7 +63,7 @@ ApplicationWindow { Shortcut { sequence: "Ctrl+Enter" - onActivated: inviteDialogRoot.accept() + onActivated: invitees.accept() } }