diff options
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() } } |