Skip to content
Snippets Groups Projects
Commit e06ff1ac authored by Nicolas Werner's avatar Nicolas Werner
Browse files

Fix SVG color undefined

parent f157602a
No related branches found
No related tags found
No related merge requests found
......@@ -19,7 +19,7 @@ ActiveCallBar::ActiveCallBar(QWidget *parent)
{
setAutoFillBackground(true);
auto p = palette();
p.setColor(backgroundRole(), QColorConstants::Svg::limegreen);
p.setColor(backgroundRole(), QColor(46, 204, 113));
setPalette(p);
QFont f;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment