0
0
mirror of https://github.com/yse/easy_profiler.git synced 2024-12-27 00:31:02 +08:00

#0 [Gui] Fixed typo

This commit is contained in:
Victor Zarubkin 2018-03-03 03:00:48 +03:00
parent 2643ea9b09
commit f6447ad3f9

View File

@ -285,7 +285,7 @@ void GraphicsHistogramItem::paintById(QPainter* _painter)
_painter->setPen(m_topValue < m_maxValue ? QColor(Qt::darkRed) : profiler_gui::TEXT_COLOR);
_painter->drawText(rect, Qt::AlignRight | Qt::AlignVCenter | Qt::TextDontClip, m_topDurationStr);
rect.setRect(0, bottom + 20, width - 3, font_h);
rect.setRect(0, bottom + 2, width - 3, font_h);
_painter->setPen(m_bottomValue > m_minValue ? QColor(Qt::darkRed) : profiler_gui::TEXT_COLOR);
_painter->drawText(rect, Qt::AlignRight | Qt::AlignVCenter | Qt::TextDontClip, m_bottomDurationStr);
}