Prevent shortcuts from inserting unprintable characters by accident
This commit is contained in:
parent
3533f104bd
commit
4723b677d5
1 changed files with 3 additions and 1 deletions
|
|
@ -27,7 +27,9 @@ Item {
|
|||
Keys.onPressed: event => {
|
||||
if (event.text && event.key !== Qt.Key_Enter && event.key !== Qt.Key_Return && !topBar.searchHasFocus) {
|
||||
TimelineManager.focusMessageInput();
|
||||
room.input.setText(room.input.text + event.text);
|
||||
if (event.modifiers != Qt.ControlModifier) {
|
||||
room.input.setText(room.input.text + event.text);
|
||||
}
|
||||
}
|
||||
}
|
||||
onRoomChanged: if (room != null)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue