fix(chat-input): Colon detection for foreign keyboard layout
This commit is contained in:
parent
9dcaf86e42
commit
473da3790b
|
@ -437,7 +437,7 @@ Rectangle {
|
||||||
return emojiSuggestions.listView.decrementCurrentIndex()
|
return emojiSuggestions.listView.decrementCurrentIndex()
|
||||||
}
|
}
|
||||||
|
|
||||||
isColonPressed = (event.key === Qt.Key_Colon) && (event.modifiers & Qt.ShiftModifier);
|
isColonPressed = event.key === Qt.Key_Colon;
|
||||||
|
|
||||||
if (suggestionsBox.visible) {
|
if (suggestionsBox.visible) {
|
||||||
let aliasName = suggestionsBox.formattedPlainTextFilter;
|
let aliasName = suggestionsBox.formattedPlainTextFilter;
|
||||||
|
|
Loading…
Reference in New Issue