remove completer trigger characters

This commit is contained in:
Malte E 2022-03-20 21:34:41 +01:00
parent 548063d303
commit 0cb729cfc2
1 changed files with 4 additions and 4 deletions

View File

@ -157,13 +157,13 @@ Rectangle {
else else
lastChar = '' lastChar = ''
if (lastChar == '@') { if (lastChar == '@') {
messageInput.openCompleter(selectionStart, "user"); messageInput.openCompleter(selectionStart-1, "user");
} else if (lastChar == ':') { } else if (lastChar == ':') {
messageInput.openCompleter(selectionStart, "emoji"); messageInput.openCompleter(selectionStart-1, "emoji");
} else if (lastChar == '#') { } else if (lastChar == '#') {
messageInput.openCompleter(selectionStart, "roomAliases"); messageInput.openCompleter(selectionStart-1, "roomAliases");
} else if (lastChar == "~") { } else if (lastChar == "~") {
messageInput.openCompleter(selectionStart, "customEmoji"); messageInput.openCompleter(selectionStart-1, "customEmoji");
} }
} }
onCursorPositionChanged: { onCursorPositionChanged: {