Allow adding non-existing userids to power levels

This commit is contained in:
Nicolas Werner 2022-09-22 21:24:41 +02:00
parent 33d45d5765
commit ed15d73d36
No known key found for this signature in database
GPG Key ID: C8D75E610773F2D9
1 changed files with 6 additions and 1 deletions

View File

@ -272,7 +272,11 @@ ApplicationWindow {
else
userCompleter.down();
} else if (event.matches(StandardKey.InsertParagraphSeparator)) {
userCompleter.finishCompletion();
if (userCompleter.currentCompletion()) {
userCompleter.finishCompletion();
} else if (userEntry.text.startsWith("@") && userEntry.text.includes(":")) {
userCompletionConnections.onCompletionSelected(userEntry.text);
}
event.accepted = true;
} else if (event.matches(StandardKey.Cancel)) {
typeEntry.visible = false;
@ -315,6 +319,7 @@ ApplicationWindow {
}
target: userCompleter
id: userCompletionConnections
}
delegate: RowLayout {