Added tr( ... ) around a string.

This commit is contained in:
Phil Olynyk 2019-03-26 17:59:36 -04:00
parent 9dda334f34
commit 478275479f

View File

@ -1743,7 +1743,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);