mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-06 03:00:43 +00:00
Stop tooltip appearing over grab area
This commit is contained in:
parent
f77847b6a1
commit
084f63a645
@ -2297,7 +2297,7 @@ void gGraphView::mouseMoveEvent(QMouseEvent * event)
|
||||
|
||||
if (m_button_down || ((py + h + graphSpacer) >= 0)) {
|
||||
if (m_button_down || ((y >= py) && (y < py + h))) {
|
||||
if (m_button_down || (x >= titleWidth+(gYAxis::Margin-5))) {
|
||||
if (m_button_down || (x >= titleWidth+10)) { //(gYAxis::Margin-5)
|
||||
this->setCursor(Qt::ArrowCursor);
|
||||
m_horiz_travel+=qAbs(x-m_lastxpos)+qAbs(y-m_lastypos);
|
||||
m_lastxpos=x;
|
||||
@ -2306,7 +2306,7 @@ void gGraphView::mouseMoveEvent(QMouseEvent * event)
|
||||
QMouseEvent e(event->type(),p,event->button(),event->buttons(),event->modifiers());
|
||||
|
||||
m_graphs[i]->mouseMoveEvent(&e);
|
||||
} else {
|
||||
if (x<=titleWidth+(gYAxis::Margin-5)) {
|
||||
//qDebug() << "Hovering over" << m_graphs[i]->title();
|
||||
if (m_graphsbytitle["Event Flags"]==m_graphs[i]) {
|
||||
QVector<Layer *> & layers=m_graphs[i]->layers();
|
||||
@ -2338,6 +2338,9 @@ void gGraphView::mouseMoveEvent(QMouseEvent * event)
|
||||
updateGL();
|
||||
}
|
||||
}
|
||||
}
|
||||
} else {
|
||||
|
||||
this->setCursor(Qt::OpenHandCursor);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user