-
Notifications
You must be signed in to change notification settings - Fork 25
Open
Description
Issue overview
Measure html output written to register info should be rendered the same in both Apply Measure Now and the Run Tab. Currently there are two different implementations that render differently.
| errorsStyle = "QLabel { color : red; }"; |
and
OpenStudioApplication/src/openstudio_lib/RunTabView.cpp
Lines 267 to 271 in 6a7ef37
| auto appendErrorText = [&](const QString& text) { | |
| m_textInfo->setTextColor(Qt::red); | |
| m_textInfo->setFontPointSize(18); | |
| m_textInfo->append(text); | |
| }; |
We should have a shared implementation for these two tabs
Reactions are currently unavailable