mirror of
https://github.com/nextcloud/desktop.git
synced 2024-11-29 12:19:03 +03:00
Merge pull request #6897 from nextcloud/bugfix/mac-vfs-checkboxes
Fix clickable area of macOS VFS settings checkboxes
This commit is contained in:
commit
74700ed488
2 changed files with 0 additions and 2 deletions
|
@ -34,7 +34,6 @@ Column {
|
||||||
|
|
||||||
CheckBox {
|
CheckBox {
|
||||||
id: fastEnumerationEnabledCheckBox
|
id: fastEnumerationEnabledCheckBox
|
||||||
width: parent.width
|
|
||||||
text: qsTr("Enable fast sync")
|
text: qsTr("Enable fast sync")
|
||||||
checked: root.fastEnumerationEnabled
|
checked: root.fastEnumerationEnabled
|
||||||
onClicked: root.fastEnumerationEnabledToggled(checked)
|
onClicked: root.fastEnumerationEnabledToggled(checked)
|
||||||
|
|
|
@ -78,7 +78,6 @@ Page {
|
||||||
|
|
||||||
CheckBox {
|
CheckBox {
|
||||||
id: vfsEnabledCheckBox
|
id: vfsEnabledCheckBox
|
||||||
Layout.fillWidth: true
|
|
||||||
text: qsTr("Enable virtual files")
|
text: qsTr("Enable virtual files")
|
||||||
checked: root.controller.vfsEnabledForAccount(root.accountUserIdAtHost)
|
checked: root.controller.vfsEnabledForAccount(root.accountUserIdAtHost)
|
||||||
onClicked: root.controller.setVfsEnabledForAccount(root.accountUserIdAtHost, checked)
|
onClicked: root.controller.setVfsEnabledForAccount(root.accountUserIdAtHost, checked)
|
||||||
|
|
Loading…
Reference in a new issue