mirror of
https://github.com/Nheko-Reborn/nheko.git
synced 2024-11-22 11:00:48 +03:00
Fix copy and paste again
This commit is contained in:
parent
eefa6379f9
commit
6762032c53
1 changed files with 2 additions and 1 deletions
|
@ -28,7 +28,8 @@ Item {
|
|||
|
||||
onRoomChanged: if (room != null) room.triggerSpecialEffects()
|
||||
|
||||
Keys.onPressed: if (!topBar.searchHasFocus) TimelineManager.focusMessageInput();
|
||||
// focus message input on key press, but not on Ctrl-C and such.
|
||||
Keys.onPressed: if (event.text && !topBar.searchHasFocus) TimelineManager.focusMessageInput();
|
||||
|
||||
Shortcut {
|
||||
sequence: StandardKey.Close
|
||||
|
|
Loading…
Reference in a new issue