From 29a782731f5a188d104b1e299f0f996da5f87c63 Mon Sep 17 00:00:00 2001 From: Guy Scharf Date: Thu, 21 Nov 2019 16:39:36 -0700 Subject: [PATCH] Add missing translation call for a tooltip --- oscar/Graphs/gGraphView.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/oscar/Graphs/gGraphView.cpp b/oscar/Graphs/gGraphView.cpp index a6a672ea..c4aa7603 100644 --- a/oscar/Graphs/gGraphView.cpp +++ b/oscar/Graphs/gGraphView.cpp @@ -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);