From 5ab8155fca8de080d81f03a612ce34d60b74cc88 Mon Sep 17 00:00:00 2001 From: Mark Watkins Date: Sun, 10 Jun 2018 18:02:58 +1000 Subject: [PATCH] Make popout graphs also work on pinned graphs --- sleepyhead/Graphs/gGraphView.cpp | 4 +++- sleepyhead/Graphs/gLineChart.cpp | 3 ++- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/sleepyhead/Graphs/gGraphView.cpp b/sleepyhead/Graphs/gGraphView.cpp index 0981b073..35274da3 100644 --- a/sleepyhead/Graphs/gGraphView.cpp +++ b/sleepyhead/Graphs/gGraphView.cpp @@ -2490,6 +2490,9 @@ void gGraphView::mousePressEvent(QMouseEvent *event) this->setCursor(Qt::ArrowCursor); pin_action->setText(QObject::tr("Unpin %1 Graph").arg(g->title())); pin_graph = g; + popout_action->setText(QObject::tr("Popout %1 Graph").arg(g->title())); + popout_graph = g; + populateMenu(g); context_menu->popup(event->globalPos()); //done=true; @@ -2565,7 +2568,6 @@ void gGraphView::mousePressEvent(QMouseEvent *event) popout_action->setText(QObject::tr("Popout %1 Graph").arg(g->title())); popout_graph = g; pin_action->setText(QObject::tr("Pin %1 Graph").arg(g->title())); - pin_graph = g; populateMenu(g); diff --git a/sleepyhead/Graphs/gLineChart.cpp b/sleepyhead/Graphs/gLineChart.cpp index 20f0f72a..d4ede0c3 100644 --- a/sleepyhead/Graphs/gLineChart.cpp +++ b/sleepyhead/Graphs/gLineChart.cpp @@ -444,6 +444,8 @@ void gLineChart::paint(QPainter &painter, gGraph &w, const QRegion ®ion) } } + painter.setRenderHint(QPainter::Antialiasing, AppSetting->antiAliasing()); + //bool mouseover = false; if (rect.contains(w.graphView()->currentMousePos())) { //mouseover = true; @@ -511,7 +513,6 @@ void gLineChart::paint(QPainter &painter, gGraph &w, const QRegion ®ion) painter.setClipRect(left, top, width, height+1); painter.setClipping(true); - painter.setRenderHint(QPainter::Antialiasing, AppSetting->antiAliasing()); painter.setFont(*defaultfont); bool showDottedLines = true;