diff options
author | kali kaneko (leap communications) <kali@leap.se> | 2021-06-14 19:41:45 +0200 |
---|---|---|
committer | kali kaneko (leap communications) <kali@leap.se> | 2021-06-14 19:41:45 +0200 |
commit | 1410e4cecccb860fc1dd29d1d4021ff72b5dc1ab (patch) | |
tree | ba79a94a6b113dc33002526a9a86d818ab453007 /gui/qml | |
parent | 0a4cfd33abd3a664c5d869f0c97023ada9679020 (diff) |
[bug] do show gw selection pane
Diffstat (limited to 'gui/qml')
-rw-r--r-- | gui/qml/main.qml | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/gui/qml/main.qml b/gui/qml/main.qml index 2573323..91e3b4e 100644 --- a/gui/qml/main.qml +++ b/gui/qml/main.qml @@ -254,15 +254,11 @@ ApplicationWindow { } function setGwSelection() { - if (!ctx.currentLocation) { - return - } + if (!isManualLocation()) { - //manualSelectionItem.checked = isManualLocation() manualSelectionItem.checked = false bar.currentIndex = 1 app.visible = true - app.hide() app.show() app.raise() return @@ -381,7 +377,6 @@ ApplicationWindow { text: qsTr("About…") onTriggered: { about.visible = true - app.focus = true requestActivate() } } |