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>2020-06-26 16:43:20 +0300
committerHannah von Reth <vonreth@kde.org>2020-06-29 17:15:31 +0300
commit809aaccf0464ffa37453114074951f0a2b86ad81 (patch)
treee67b6ee996f79b2db60d3750bc89e9fabff33ec2
parent42c0995ae6fcfe5a370ebf319d378942f489ac0f (diff)
Gui: hide the selective sync pop up by default
This fixes a strange flickering when the client is started with the gui visible.
-rw-r--r--changelog/unreleased/79255
-rw-r--r--src/gui/accountsettings.cpp2
2 files changed, 7 insertions, 0 deletions
diff --git a/changelog/unreleased/7925 b/changelog/unreleased/7925
new file mode 100644
index 000000000..e57b66977
--- /dev/null
+++ b/changelog/unreleased/7925
@@ -0,0 +1,5 @@
+Change: The settings ui shows a prompt for a few seconds
+
+We now hide that prompt by default and only show it if needed.
+
+https://github.com/owncloud/client/pull/7925
diff --git a/src/gui/accountsettings.cpp b/src/gui/accountsettings.cpp
index e873333df..ec82fc2e7 100644
--- a/src/gui/accountsettings.cpp
+++ b/src/gui/accountsettings.cpp
@@ -136,6 +136,8 @@ AccountSettings::AccountSettings(AccountState *accountState, QWidget *parent)
ui->_folderList->setAttribute(Qt::WA_Hover, true);
ui->_folderList->installEventFilter(mouseCursorChanger);
+ ui->selectiveSyncStatus->hide();
+
createAccountToolbox();
connect(AccountManager::instance(), &AccountManager::accountAdded,
this, &AccountSettings::slotAccountAdded);