Stop tooltip appearing over grab area

This commit is contained in:
Mark Watkins 2011-12-05 21:01:11 +10:00
parent f77847b6a1
commit 084f63a645

View File

@ -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);
}