From 369c1d737a8f39e61efd80efc6b39160ced54792 Mon Sep 17 00:00:00 2001 From: Claudio Cambra Date: Tue, 9 Jan 2024 22:49:22 +0800 Subject: [PATCH] Add UI button to signal file provider domain Signed-off-by: Claudio Cambra --- src/gui/macOS/ui/FileProviderSettings.qml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/src/gui/macOS/ui/FileProviderSettings.qml b/src/gui/macOS/ui/FileProviderSettings.qml index 095251dfc4..7102324e9d 100644 --- a/src/gui/macOS/ui/FileProviderSettings.qml +++ b/src/gui/macOS/ui/FileProviderSettings.qml @@ -145,6 +145,20 @@ Page { } } + EnforcedPlainTextLabel { + Layout.fillWidth: true + Layout.topMargin: Style.standardSpacing + text: qsTr("Advanced") + font.bold: true + font.pointSize: root.font.pointSize + 2 + elide: Text.ElideRight + } + + CustomButton { + text: qsTr("Signal file provider domain") + onClicked: root.controller.signalFileProviderDomain(root.accountUserIdAtHost) + } + CustomButton { text: qsTr("Create debug archive") onClicked: root.controller.createDebugArchive(root.accountUserIdAtHost)