Commit ca5c4862 authored by Lorenz Meier's avatar Lorenz Meier

Simplified formatting

parent ae35d389
...@@ -104,11 +104,11 @@ void QGCMessageView::handleTextMessage(int uasid, int compId, int severity, QStr ...@@ -104,11 +104,11 @@ void QGCMessageView::handleTextMessage(int uasid, int compId, int severity, QStr
case MAV_SEVERITY_ERROR: case MAV_SEVERITY_ERROR:
// TODO: Move this audio output to UAS.cc, as it doesn't make sense to put audio output in a message logger widget. // TODO: Move this audio output to UAS.cc, as it doesn't make sense to put audio output in a message logger widget.
GAudioOutput::instance()->say(text.toLower()); GAudioOutput::instance()->say(text.toLower());
style = QString("color:#DC143C;font-size:large;font-weight:bold"); style = QString("color:#DC143C;");
break; break;
case MAV_SEVERITY_WARNING: case MAV_SEVERITY_WARNING:
case MAV_SEVERITY_NOTICE: case MAV_SEVERITY_NOTICE:
style = QString("color:%1;font-weight:bold").arg(colorName); style = QString("color:%1;").arg(colorName);
break; break;
default: default:
style = QString("color:%1;").arg(colorName); style = QString("color:%1;").arg(colorName);
...@@ -155,4 +155,4 @@ void QGCMessageView::handleTextMessage(int uasid, int compId, int severity, QStr ...@@ -155,4 +155,4 @@ void QGCMessageView::handleTextMessage(int uasid, int compId, int severity, QStr
// Ensure text area scrolls correctly // Ensure text area scrolls correctly
scroller->setValue(scroller->maximum()); scroller->setValue(scroller->maximum());
msgWidget->setUpdatesEnabled(true); msgWidget->setUpdatesEnabled(true);
} }
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment