Fix mousetooltip out of view

This commit is contained in:
Mark Watkins 2018-05-05 19:53:52 +10:00
parent 9d4e094419
commit cf72406ee6

View File

@ -179,6 +179,12 @@ void gToolTip::paint(QPainter &painter) //actually paints it.
rect.moveTopLeft(m_pos);
}
int bot = rect.bottom() - m_graphview->height();
if (bot > 0) {
rect.setTop(rect.top()-bot);
rect.setBottom(m_graphview->height());
}
QBrush brush(QColor(255, 255, 128, 230));
brush.setStyle(Qt::SolidPattern);