From: Olivier Goffart Date: Tue, 15 Oct 2019 12:12:47 +0000 (+0200) Subject: Account Settings: change the color of info message from green to blue X-Git-Tag: archive/raspbian/3.16.7-1_deb13u1+rpi1~1^2~12^2~21^2~468^2~166 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=513b0c723c96acc68f6fb7797a838db7f72d262c;p=nextcloud-desktop.git Account Settings: change the color of info message from green to blue To avoid confusion with the color of "success" Issue #7403 --- 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) {