From 513b0c723c96acc68f6fb7797a838db7f72d262c Mon Sep 17 00:00:00 2001 From: Olivier Goffart Date: Tue, 15 Oct 2019 14:12:47 +0200 Subject: [PATCH] Account Settings: change the color of info message from green to blue To avoid confusion with the color of "success" Issue #7403 --- src/gui/folderstatusdelegate.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) { -- 2.30.2