Merge pull request #1456 from Nheko-Reborn/inputfocus

Type keypresses that focus the input bar
This commit is contained in:
DeepBlueV7.X 2023-05-13 00:06:52 +00:00 committed by GitHub
commit 4a060b59b2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -30,7 +30,12 @@ Item {
onRoomChanged: if (room != null) room.triggerSpecialEffects()
// focus message input on key press, but not on Ctrl-C and such.
Keys.onPressed: if (event.text && !topBar.searchHasFocus) TimelineManager.focusMessageInput();
Keys.onPressed: {
if (event.text && !topBar.searchHasFocus) {
TimelineManager.focusMessageInput();
room.input.setText(room.input.text + event.text);
}
}
Shortcut {
sequence: StandardKey.Close