From cf72406ee61ccef8000c7d062b4951d29cfebd2b Mon Sep 17 00:00:00 2001 From: Mark Watkins Date: Sat, 5 May 2018 19:53:52 +1000 Subject: [PATCH] Fix mousetooltip out of view --- sleepyhead/Graphs/gGraphView.cpp | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/sleepyhead/Graphs/gGraphView.cpp b/sleepyhead/Graphs/gGraphView.cpp index d49f4c43..b783f21e 100644 --- a/sleepyhead/Graphs/gGraphView.cpp +++ b/sleepyhead/Graphs/gGraphView.cpp @@ -179,6 +179,12 @@ void gToolTip::paint(QPainter &painter) //actually paints it. rect.moveTopLeft(m_pos); } + int bot = rect.bottom() - m_graphview->height(); + if (bot > 0) { + rect.setTop(rect.top()-bot); + rect.setBottom(m_graphview->height()); + } + QBrush brush(QColor(255, 255, 128, 230)); brush.setStyle(Qt::SolidPattern);