diff --git a/apps/calculation/output_expressions_view.cpp b/apps/calculation/output_expressions_view.cpp index 11dc3d59d..5a8f518d2 100644 --- a/apps/calculation/output_expressions_view.cpp +++ b/apps/calculation/output_expressions_view.cpp @@ -8,7 +8,7 @@ namespace Calculation { OutputExpressionsView::OutputExpressionsView(Responder * parentResponder) : Responder(parentResponder), m_approximateExpressionView(), - m_approximateSign(KDText::FontSize::Large, I18n::Message::ApproximateEqual, 0.5f, 0.5f), + m_approximateSign(KDText::FontSize::Large, I18n::Message::ApproximateEqual, 0.5f, 0.5f, Palette::GreyDark), m_exactExpressionView(), m_selectedSubviewType(OutputExpressionsView::SubviewType::ExactOutput) { @@ -36,6 +36,11 @@ void OutputExpressionsView::reloadCell() { m_approximateExpressionView.setBackgroundColor(Palette::Select); } } + if (numberOfSubviews() == 1) { + m_approximateExpressionView.setTextColor(KDColorBlack); + } else { + m_approximateExpressionView.setTextColor(Palette::GreyDark); + } layoutSubviews(); EvenOddCell::reloadCell(); }