Skip to content

Commit

Permalink
Better default color for warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
adeas31 committed Apr 25, 2018
1 parent e2aff3c commit d1e3551
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion OMEdit/OMEditGUI/Options/OptionsDialog.cpp
Expand Up @@ -3462,7 +3462,7 @@ MessagesPage::MessagesPage(OptionsDialog *pOptionsDialog)
mpWarningColorButton = new QPushButton(Helper::pickColor);
mpWarningColorButton->setAutoDefault(false);
connect(mpWarningColorButton, SIGNAL(clicked()), SLOT(pickWarningColor()));
setWarningColor(Qt::black);
setWarningColor(QColor(255, 170, 0));
setWarningPickColorButtonIcon();
// Error Color
mpErrorColorLabel = new Label(tr("Error Color:"));
Expand Down

0 comments on commit d1e3551

Please sign in to comment.