Sketcher visualization: Increase readability of redundant constraint solver message

Color changed to "OrangeRed" to improve readability.
This commit is contained in:
Abdullah Tahiri 2014-09-16 14:08:19 +02:00 committed by wmayer
parent 5f2670dbcf
commit da2df00eea

View File

@ -3756,7 +3756,7 @@ void ViewProviderSketch::solveSketch(void)
}
else {
if (edit->ActSketch.hasRedundancies()) { // redundant constraints
signalSetUp(QString::fromLatin1("<font color='DarkOrange'>%1<a href=\"#redundant\"><span style=\" text-decoration: underline; color:#0000ff;\">%2</span></a><br/>%3</font><br/>")
signalSetUp(QString::fromLatin1("<font color='orangered'>%1<a href=\"#redundant\"><span style=\" text-decoration: underline; color:#0000ff;\">%2</span></a><br/>%3</font><br/>")
.arg(tr("Sketch contains redundant constraints "))
.arg(tr("(click to select)"))
.arg(appendRedundantMsg(edit->ActSketch.getRedundant())));