Add missing translation call for a tooltip

This commit is contained in:
Guy Scharf 2019-11-21 16:39:36 -07:00
parent 5bd53a14a7
commit 29a782731f

View File

@ -1851,7 +1851,7 @@ void gGraphView::mouseMoveEvent(QMouseEvent *event)
if (x >= titleWidth + 10) {
this->setCursor(Qt::ArrowCursor);
} else {
m_tooltip->display("Double click title to pin / unpin\nClick and drag to reorder graphs", x + 10, y, TT_AlignLeft);
m_tooltip->display(tr("Double click title to pin / unpin\nClick and drag to reorder graphs"), x + 10, y, TT_AlignLeft);
timedRedraw(0);
this->setCursor(Qt::OpenHandCursor);