InfoBar: Fix wrong value used for text color

Change-Id: Ib127889c96892c2c744a97992e4fc1faae23316d
Reviewed-by: Alessandro Portale <alessandro.portale@digia.com>
This commit is contained in:
Orgad Shaneh
2014-11-13 13:12:43 +02:00
committed by Orgad Shaneh
parent f268d0f8e1
commit c7042e7031

View File

@@ -207,7 +207,7 @@ void InfoBarDisplay::update()
QPalette pal; QPalette pal;
pal.setColor(QPalette::Window, creatorTheme()->color(Theme::InfoBarBackground)); pal.setColor(QPalette::Window, creatorTheme()->color(Theme::InfoBarBackground));
pal.setColor(QPalette::WindowText, Theme::InfoBarText); pal.setColor(QPalette::WindowText, creatorTheme()->color(Theme::InfoBarText));
infoWidget->setPalette(pal); infoWidget->setPalette(pal);
infoWidget->setFrameStyle(QFrame::Panel | QFrame::Raised); infoWidget->setFrameStyle(QFrame::Panel | QFrame::Raised);