Account Settings: change the color of info message from green to blue
authorOlivier Goffart <ogoffart@woboq.com>
Tue, 15 Oct 2019 12:12:47 +0000 (14:12 +0200)
committerKevin Ottens <kevin.ottens@nextcloud.com>
Tue, 15 Dec 2020 09:59:02 +0000 (10:59 +0100)
To avoid confusion with the color of "success"

Issue #7403

src/gui/folderstatusdelegate.cpp

index 2bf59fe01dd3d09d0d2783a44f6c004ef3f41452..16d927f595792f3b80c943573fd8f68cca9f70d6 100644 (file)
@@ -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) {