mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 02:30:44 +00:00
Removed superfluous redraw in YAxis Tooltips
This commit is contained in:
parent
8553fdfd1c
commit
5f3826b67a
@ -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();
|
||||
|
@ -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;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user