mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 10:40:42 +00:00
Fix mousetooltip out of view
This commit is contained in:
parent
9d4e094419
commit
cf72406ee6
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user