Skip to content
Snippets Groups Projects
Verified Commit 6762032c authored by Nicolas Werner's avatar Nicolas Werner
Browse files

Fix copy and paste again

parent eefa6379
No related branches found
No related tags found
No related merge requests found
Pipeline #4008 passed
......@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment