From 4473ca745ae6ba316fce1270fbc0d23feb92229c Mon Sep 17 00:00:00 2001 From: Mark Watkins Date: Thu, 28 Aug 2014 00:02:05 +1000 Subject: [PATCH] Make sure gGraphView::SaveSettings doesn't try to save snapshot graphs --- sleepyhead/Graphs/gGraphView.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/sleepyhead/Graphs/gGraphView.cpp b/sleepyhead/Graphs/gGraphView.cpp index 7dfafd6e..ed539c75 100644 --- a/sleepyhead/Graphs/gGraphView.cpp +++ b/sleepyhead/Graphs/gGraphView.cpp @@ -2994,6 +2994,7 @@ void gGraphView::SaveSettings(QString title) for (qint16 i = 0; i < size(); i++) { gGraph * graph = m_graphs[i]; if (!graph) continue; + if (graph->isSnapshot()) continue; out << graph->name(); out << graph->height();