diff --git a/src/ui/uas/QGCMessageView.cc b/src/ui/uas/QGCMessageView.cc index 2097bdd4d44e9e9bc824791727fac068e7d1b56e..c8be3cce02df6edc590f06ec83ec27ffce89275c 100644 --- a/src/ui/uas/QGCMessageView.cc +++ b/src/ui/uas/QGCMessageView.cc @@ -104,11 +104,11 @@ void QGCMessageView::handleTextMessage(int uasid, int compId, int severity, QStr 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. GAudioOutput::instance()->say(text.toLower()); - style = QString("color:#DC143C;font-size:large;font-weight:bold"); + style = QString("color:#DC143C;"); break; case MAV_SEVERITY_WARNING: case MAV_SEVERITY_NOTICE: - style = QString("color:%1;font-weight:bold").arg(colorName); + style = QString("color:%1;").arg(colorName); break; default: style = QString("color:%1;").arg(colorName); @@ -155,4 +155,4 @@ void QGCMessageView::handleTextMessage(int uasid, int compId, int severity, QStr // Ensure text area scrolls correctly scroller->setValue(scroller->maximum()); msgWidget->setUpdatesEnabled(true); -} \ No newline at end of file +}