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

github.com/nextcloud/desktop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Schuster <michael@schuster.ms>2019-12-19 21:31:42 +0300
committerMichael Schuster <48932272+misch7@users.noreply.github.com>2019-12-20 00:07:30 +0300
commit3b580eeca7f8ac5837459d439685cc9e82fa0c67 (patch)
tree57b9f90e477b717bf328049edaade46e5940c51b /src/gui/accountsettings.cpp
parent6adfff1f13407ce4c7a74de2d009cb26f74d7311 (diff)
Change error link colour in AccountSettings::showConnectionLabel
Signed-off-by: Michael Schuster <michael@schuster.ms>
Diffstat (limited to 'src/gui/accountsettings.cpp')
-rw-r--r--src/gui/accountsettings.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/accountsettings.cpp b/src/gui/accountsettings.cpp
index 843dab5ba..3c62c3231 100644
--- a/src/gui/accountsettings.cpp
+++ b/src/gui/accountsettings.cpp
@@ -845,7 +845,7 @@ void AccountSettings::showConnectionLabel(const QString &message, QStringList er
errors.prepend(message);
QString msg = errors.join(QLatin1String("\n"));
qCDebug(lcAccountSettings) << msg;
- Theme::replaceLinkColorStringBackgroundAware(msg, QColor("#bb4d4d"));
+ Theme::replaceLinkColorString(msg, QColor("#c1c8e6"));
ui->connectLabel->setText(msg);
ui->connectLabel->setToolTip(QString());
ui->connectLabel->setStyleSheet(errStyle);