Also update vertical line when hovering over eventflags graph

This commit is contained in:
Mark Watkins 2014-07-20 19:42:34 +10:00
parent 8821a03355
commit 6ca12024ae

View File

@ -127,6 +127,10 @@ void gFlagsGroup::paint(QPainter &painter, gGraph &g, const QRegion &region)
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);
}
}