From b29b5962d234e5f9fcb452b85e35a4fe712bd5f7 Mon Sep 17 00:00:00 2001 From: Cyril Anisimov Date: Fri, 20 Dec 2024 02:17:50 +0100 Subject: [PATCH] `I have nothing` is visible only on start screen --- client/ui/qml/Pages2/PageSetupWizardConfigSource.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/ui/qml/Pages2/PageSetupWizardConfigSource.qml b/client/ui/qml/Pages2/PageSetupWizardConfigSource.qml index 4598c9c2..f5ac64b1 100644 --- a/client/ui/qml/Pages2/PageSetupWizardConfigSource.qml +++ b/client/ui/qml/Pages2/PageSetupWizardConfigSource.qml @@ -304,7 +304,7 @@ PageType { property string title: qsTr("I have nothing") property string description: qsTr("") property string imageSource: "qrc:/images/controls/help-circle.svg" - property bool isVisible: true + property bool isVisible: PageController.isStartPageVisible() property var handler: function() { Qt.openUrlExternally(LanguageModel.getCurrentSiteUrl()) }