From 9ebb2724915c130e201e23882d57662cd32fa605 Mon Sep 17 00:00:00 2001 From: Mark Watkins Date: Sun, 10 Aug 2014 10:34:15 +1000 Subject: [PATCH] Make pin tooltip work over pinned graphs too --- sleepyhead/Graphs/gGraphView.cpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/sleepyhead/Graphs/gGraphView.cpp b/sleepyhead/Graphs/gGraphView.cpp index eb0878bd..1d9ca3ae 100644 --- a/sleepyhead/Graphs/gGraphView.cpp +++ b/sleepyhead/Graphs/gGraphView.cpp @@ -1308,6 +1308,9 @@ 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); + timedRedraw(30); + this->setCursor(Qt::OpenHandCursor); } @@ -1358,7 +1361,7 @@ void gGraphView::mouseMoveEvent(QMouseEvent *event) if (x >= titleWidth + 10) { this->setCursor(Qt::ArrowCursor); } else { - m_tooltip->display("Double click title to pin\nClick and drag to reorder graphs", x + 10, y, TT_AlignLeft); + m_tooltip->display("Double click title to pin / unpin\nClick and drag to reorder graphs", x + 10, y, TT_AlignLeft); timedRedraw(30); this->setCursor(Qt::OpenHandCursor);