Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/owncloud/client.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHannah von Reth <hannah.vonreth@owncloud.com>2021-10-20 16:27:38 +0300
committerHannah von Reth <vonreth@kde.org>2021-10-20 17:22:09 +0300
commit8955adb12e0db2ae98b5e18f5d84dfb3cd1f76ad (patch)
tree96381484e1f55ca89fb755cf10b6dbf3380e7210
parent0ff9ac3600c73686236ec153131de6ad6dcec515 (diff)
Properly unselect the vfs button.
Fixes: #9159
-rw-r--r--changelog/unreleased/91596
-rw-r--r--src/gui/wizard/owncloudadvancedsetuppage.cpp1
2 files changed, 7 insertions, 0 deletions
diff --git a/changelog/unreleased/9159 b/changelog/unreleased/9159
new file mode 100644
index 000000000..88b89bf28
--- /dev/null
+++ b/changelog/unreleased/9159
@@ -0,0 +1,6 @@
+Bugfix: Disable vfs option is ignored
+
+We fixed a branding issue where vfs was used even when the parameter was set to disabled.
+
+https://github.com/owncloud/client/issues/9159
+https://github.com/owncloud/enterprise/issues/4820
diff --git a/src/gui/wizard/owncloudadvancedsetuppage.cpp b/src/gui/wizard/owncloudadvancedsetuppage.cpp
index 3cd4fea16..bdaba3ad1 100644
--- a/src/gui/wizard/owncloudadvancedsetuppage.cpp
+++ b/src/gui/wizard/owncloudadvancedsetuppage.cpp
@@ -115,6 +115,7 @@ void OwncloudAdvancedSetupPage::initializePage()
// Just manually hide the button and remove the layout.
_ui.rVirtualFileSync->hide();
_ui.wSyncStrategy->layout()->removeItem(_ui.lVirtualFileSync);
+ setRadioChecked(_ui.rSyncEverything);
} else {
#ifdef Q_OS_WIN
if (vfsMode == Vfs::WindowsCfApi) {