From 1967b5efa53ef1eaf4701c4ba73241e75603665e Mon Sep 17 00:00:00 2001 From: Claudio Cambra Date: Wed, 10 Jul 2024 15:07:30 +0800 Subject: [PATCH 1/2] Limit clickable area of enable macOS vfs checkbox to its text/box Signed-off-by: Claudio Cambra --- src/gui/macOS/ui/FileProviderSettings.qml | 1 - 1 file changed, 1 deletion(-) diff --git a/src/gui/macOS/ui/FileProviderSettings.qml b/src/gui/macOS/ui/FileProviderSettings.qml index c9fc2f23cb74c..a4efa0a32eae9 100644 --- a/src/gui/macOS/ui/FileProviderSettings.qml +++ b/src/gui/macOS/ui/FileProviderSettings.qml @@ -78,7 +78,6 @@ Page { CheckBox { id: vfsEnabledCheckBox - Layout.fillWidth: true text: qsTr("Enable virtual files") checked: root.controller.vfsEnabledForAccount(root.accountUserIdAtHost) onClicked: root.controller.setVfsEnabledForAccount(root.accountUserIdAtHost, checked) From 68bb62e4d5e1ebbc2b110309e80de99c1e6abdbf Mon Sep 17 00:00:00 2001 From: Claudio Cambra Date: Wed, 10 Jul 2024 15:07:49 +0800 Subject: [PATCH 2/2] Limit clickable area of macOS vfs fast sync checkbox to its drawing zone Signed-off-by: Claudio Cambra --- src/gui/macOS/ui/FileProviderFastEnumerationSettings.qml | 1 - 1 file changed, 1 deletion(-) diff --git a/src/gui/macOS/ui/FileProviderFastEnumerationSettings.qml b/src/gui/macOS/ui/FileProviderFastEnumerationSettings.qml index b40dad56b48b5..ce94746298d5d 100644 --- a/src/gui/macOS/ui/FileProviderFastEnumerationSettings.qml +++ b/src/gui/macOS/ui/FileProviderFastEnumerationSettings.qml @@ -34,7 +34,6 @@ Column { CheckBox { id: fastEnumerationEnabledCheckBox - width: parent.width text: qsTr("Enable fast sync") checked: root.fastEnumerationEnabled onClicked: root.fastEnumerationEnabledToggled(checked)