From eec43c71417f981f889dc01cb37031f3a1cfc51f Mon Sep 17 00:00:00 2001 From: Mark Watkins Date: Sun, 20 Jul 2014 00:34:32 +1000 Subject: [PATCH] Just record history at zoom changes, the other way sucks --- sleepyhead/Graphs/gGraph.cpp | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/sleepyhead/Graphs/gGraph.cpp b/sleepyhead/Graphs/gGraph.cpp index fe50345f..83439b38 100644 --- a/sleepyhead/Graphs/gGraph.cpp +++ b/sleepyhead/Graphs/gGraph.cpp @@ -761,7 +761,6 @@ void gGraph::mouseMoveEvent(QMouseEvent *event) min_x = rmax_x - xx; } - m_graphview->saveHistory(); m_graphview->SetXBounds(min_x, max_x, m_group, false); doredraw = true; } else { @@ -785,7 +784,6 @@ void gGraph::mouseMoveEvent(QMouseEvent *event) min_x = rmax_x - xx; } - m_graphview->saveHistory(); m_graphview->SetXBounds(min_x, max_x, m_group, false); doredraw = true; } @@ -891,7 +889,6 @@ void gGraph::mouseReleaseEvent(QMouseEvent *event) } else { if (a2 - a1 < zoom_hard_limit) { a2 = a1 + zoom_hard_limit; } - m_graphview->saveHistory(); m_graphview->SetXBounds(a1, a2, m_group); } } else { @@ -900,16 +897,15 @@ void gGraph::mouseReleaseEvent(QMouseEvent *event) qint64 j1 = rmin_x + xmult * x; qint64 j2 = rmin_x + xmult * x2; qint64 a1 = MIN(j1, j2) - qint64 a2 = MAX(j1, j2) + qint64 a2 = MAX(j1, j2) - //if (a1 rmax_x) { a2 = rmax_x; } if (a1 <= rmin_x && a2 <= rmin_x) { qDebug() << "Foo2??"; } else { if (a2 - a1 < zoom_hard_limit) { a2 = a1 + zoom_hard_limit; } - m_graphview->saveHistory(); m_graphview->SetXBounds(a1, a2, m_group); } } @@ -983,7 +979,6 @@ void gGraph::mouseReleaseEvent(QMouseEvent *event) min_x = rmax_x - xx; } - m_graphview->saveHistory(); m_graphview->SetXBounds(min_x, max_x, m_group); m_lastx23 = x; } @@ -1122,7 +1117,6 @@ void gGraph::ZoomX(double mult, int origin_px) extern const int max_history; - m_graphview->saveHistory(); m_graphview->SetXBounds(min, max, m_group); //updateSelectionTime(max-min); }