Removed superfluous redraw in YAxis Tooltips

This commit is contained in:
Mark Watkins 2013-10-25 21:46:35 +10:00
parent 8553fdfd1c
commit 5f3826b67a
2 changed files with 3 additions and 2 deletions

View File

@ -1513,7 +1513,8 @@ void gGraph::mouseMoveEvent(QMouseEvent * event)
for (int i=0;i<m_layers.size();i++) {
if (m_layers[i]->m_rect.contains(x,y))
if (m_layers[i]->mouseMoveEvent(event,this)) doredraw=true;
if (m_layers[i]->mouseMoveEvent(event,this))
doredraw=true;
}
y-=m_rect.top();

View File

@ -367,7 +367,7 @@ bool gYAxis::mouseMoveEvent(QMouseEvent * event, gGraph * graph)
int y=event->y();
if (!graph->units().isEmpty()) {
graph->ToolTip(graph->units(),x,y-20,0);
graph->redraw();
// graph->redraw();
}
return true;
}