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:
authorOlivier Goffart <ogoffart@woboq.com>2019-10-15 15:12:47 +0300
committerKevin Ottens <kevin.ottens@nextcloud.com>2020-12-15 12:59:02 +0300
commit513b0c723c96acc68f6fb7797a838db7f72d262c (patch)
tree9b8a50c04bc0218d81459d7f112b0dc9c2f527bf /src/gui/folderstatusdelegate.cpp
parent4d7ed8f62c88975b4970377d9e2a5a743f528027 (diff)
Account Settings: change the color of info message from green to blue
To avoid confusion with the color of "success" Issue #7403
Diffstat (limited to 'src/gui/folderstatusdelegate.cpp')
-rw-r--r--src/gui/folderstatusdelegate.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/folderstatusdelegate.cpp b/src/gui/folderstatusdelegate.cpp
index 2bf59fe01..16d927f59 100644
--- a/src/gui/folderstatusdelegate.cpp
+++ b/src/gui/folderstatusdelegate.cpp
@@ -300,7 +300,7 @@ void FolderStatusDelegate::paint(QPainter *painter, const QStyleOptionViewItem &
if (!errorTexts.isEmpty())
drawTextBox(errorTexts, QColor(0xbb, 0x4d, 0x4d));
if (!infoTexts.isEmpty())
- drawTextBox(infoTexts, QColor(0x4d, 0xba, 0x4d));
+ drawTextBox(infoTexts, QColor(0x4d, 0x4d, 0xba));
// Sync File Progress Bar: Show it if syncFile is not empty.
if (showProgess) {