diff options
author | Loren Burkholder <computersemiexpert@outlook.com> | 2023-02-14 09:24:03 -0500 |
---|---|---|
committer | Loren Burkholder <computersemiexpert@outlook.com> | 2023-02-14 12:58:28 -0500 |
commit | 9297035ba818458223f7ca1ac04b8915a6a87977 (patch) | |
tree | 3d1b4e702ceac3ff16746bec7e3e05a94088e95f /resources/qml | |
parent | Merge pull request #1359 from Nheko-Reborn/encryption_delegate (diff) | |
download | nheko-9297035ba818458223f7ca1ac04b8915a6a87977.tar.xz |
Focus text input when quick switcher is closed
Fixes #1065
Diffstat (limited to 'resources/qml')
-rw-r--r-- | resources/qml/QuickSwitcher.qml | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/resources/qml/QuickSwitcher.qml b/resources/qml/QuickSwitcher.qml index 77992e69..38c832e0 100644 --- a/resources/qml/QuickSwitcher.qml +++ b/resources/qml/QuickSwitcher.qml @@ -25,6 +25,7 @@ Popup { onOpened: { roomTextInput.forceActiveFocus(); } + onClosed: TimelineManager.focusMessageInput() property int textMargin: Nheko.paddingSmall Column{ |