1
0
Fork 0
mirror of https://git.jami.net/savoirfairelinux/jami-client-qt.git synced 2025-09-10 12:03:18 +02:00

accountcombobox: force active focus on click

Change-Id: Iafbb43d57dd8efe56ca696e64f7193bb0b24b19a
GitLab: #950
This commit is contained in:
Sébastien Blin 2023-03-02 10:17:59 -05:00
parent 048bdfba78
commit 9e05e3e186

View file

@ -88,7 +88,10 @@ Label {
id: mouseArea
anchors.fill: parent
hoverEnabled: true
onClicked: togglePopup()
onClicked: {
root.forceActiveFocus()
togglePopup()
}
}
AccountComboBoxPopup {