From a4624c7377c975e14957dc41b34345240d2d0c15 Mon Sep 17 00:00:00 2001 From: "vladimir.kuznetsov" Date: Thu, 12 Oct 2023 10:57:13 +0500 Subject: [PATCH] removed the close button for the app for mobile platforms --- client/ui/qml/Pages2/PageSettings.qml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/client/ui/qml/Pages2/PageSettings.qml b/client/ui/qml/Pages2/PageSettings.qml index a806d472..387f5ffa 100644 --- a/client/ui/qml/Pages2/PageSettings.qml +++ b/client/ui/qml/Pages2/PageSettings.qml @@ -109,6 +109,7 @@ PageType { DividerType {} LabelWithButtonType { + visible: GC.isMobile() Layout.fillWidth: true text: qsTr("Close application") @@ -120,7 +121,9 @@ PageType { } } - DividerType {} + DividerType { + visible: GC.isMobile() + } } } }