From 5545ccfaa46ff9c9b595ef2705e07881d2c6b404 Mon Sep 17 00:00:00 2001 From: Mathieu Pellerin Date: Sun, 12 Jan 2025 09:31:26 +0700 Subject: [PATCH] Fix rebase gone wrong --- src/qml/qgismobileapp.qml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/qml/qgismobileapp.qml b/src/qml/qgismobileapp.qml index ac6d5cfd58..4f28ec085e 100644 --- a/src/qml/qgismobileapp.qml +++ b/src/qml/qgismobileapp.qml @@ -3904,6 +3904,11 @@ ApplicationWindow { qfieldCloudScreen.visible = true; } + onShowSettings: { + qfieldSettings.reset(); + qfieldSettings.visible = true; + } + Component.onCompleted: focusstack.addFocusTaker(this) } @@ -3951,11 +3956,6 @@ ApplicationWindow { visible = false; } - onShowSettings: { - qfieldSettings.reset(); - qfieldSettings.visible = true; - } - Component.onCompleted: focusstack.addFocusTaker(this) }