Merge pull request #6897 from nextcloud/bugfix/mac-vfs-checkboxes

Fix clickable area of macOS VFS settings checkboxes
This commit is contained in:
Claudio Cambra 2024-07-19 16:59:38 +08:00 committed by GitHub
commit 74700ed488
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 0 additions and 2 deletions

View file

@ -34,7 +34,6 @@ Column {
CheckBox {
id: fastEnumerationEnabledCheckBox
width: parent.width
text: qsTr("Enable fast sync")
checked: root.fastEnumerationEnabled
onClicked: root.fastEnumerationEnabledToggled(checked)

View file

@ -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)