From 56e54cc6fa48b74780ef4c964b3956de9358bd4f Mon Sep 17 00:00:00 2001 From: Mark Watkins Date: Wed, 27 Aug 2014 23:50:41 +1000 Subject: [PATCH] Snapshot graphs needs a redraw scheduled after creation/destruction --- sleepyhead/Graphs/gGraphView.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/sleepyhead/Graphs/gGraphView.cpp b/sleepyhead/Graphs/gGraphView.cpp index 499a6d8f..2a6ae534 100644 --- a/sleepyhead/Graphs/gGraphView.cpp +++ b/sleepyhead/Graphs/gGraphView.cpp @@ -2104,10 +2104,13 @@ void gGraphView::onSnapshotGraphToggle() // addGraph(newgraph); updateScale(); + timedRedraw(0); } else if (cmd == "remove") { m_graphsbyname.remove(graph->name()); m_graphs.removeAll(it.value()); delete graph; + updateScale(); + timedRedraw(0); } qDebug() << cmd << name; }