mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 10:40:42 +00:00
Also update vertical line when hovering over eventflags graph
This commit is contained in:
parent
8821a03355
commit
6ca12024ae
@ -127,6 +127,10 @@ void gFlagsGroup::paint(QPainter &painter, gGraph &g, const QRegion ®ion)
|
||||
|
||||
bool gFlagsGroup::mouseMoveEvent(QMouseEvent *event, gGraph *graph)
|
||||
{
|
||||
|
||||
if (graph->graphView()->metaSelect())
|
||||
graph->timedRedraw(30);
|
||||
|
||||
if (!p_profile->appearance->graphTooltips()) {
|
||||
return false;
|
||||
}
|
||||
@ -144,7 +148,7 @@ bool gFlagsGroup::mouseMoveEvent(QMouseEvent *event, gGraph *graph)
|
||||
QString ttip = schema::channel[fl->code()].fullname() + "\n" +
|
||||
schema::channel[fl->code()].description();
|
||||
graph->ToolTip(ttip, event->x(), event->y() - 15);
|
||||
graph->redraw();
|
||||
graph->timedRedraw(30);
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user