aboutsummaryrefslogtreecommitdiffstats
path: root/qt-ui/profile/profilewidget2.cpp
diff options
context:
space:
mode:
authorGravatar pestophagous <pestophagous@users.noreply.github.com>2015-10-05 22:21:44 -0700
committerGravatar Dirk Hohndel <dirk@hohndel.org>2015-10-07 08:34:47 +0100
commite522dd1a68d559f43a337e862f9f0a4d233d9272 (patch)
tree0c6639b004e29b91a8ff733192e1fd9a25f8020f /qt-ui/profile/profilewidget2.cpp
parent4f287b6f801d1689794c5a9177f2d95090fbe8d8 (diff)
downloadsubsurface-e522dd1a68d559f43a337e862f9f0a4d233d9272.tar.gz
Preserve profile toggle-button state zoomed_plot across sessions.
Fixes #912 Signed-off-by: K. Heller <pestophagous@gmail.com> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'qt-ui/profile/profilewidget2.cpp')
-rw-r--r--qt-ui/profile/profilewidget2.cpp5
1 files changed, 4 insertions, 1 deletions
diff --git a/qt-ui/profile/profilewidget2.cpp b/qt-ui/profile/profilewidget2.cpp
index 5b7c3832a..5d2b507a0 100644
--- a/qt-ui/profile/profilewidget2.cpp
+++ b/qt-ui/profile/profilewidget2.cpp
@@ -75,7 +75,7 @@ ProfileWidget2::ProfileWidget2(QWidget *parent) : QGraphicsView(parent),
background(new DivePixmapItem()),
backgroundFile(":poster"),
toolTipItem(new ToolTipItem()),
- isPlotZoomed(prefs.zoomed_plot),
+ isPlotZoomed(prefs.zoomed_plot),// no! bad use of prefs. 'PreferencesDialog::loadSettings' NOT CALLED yet.
profileYAxis(new DepthAxis()),
gasYAxis(new PartialGasPressureAxis()),
temperatureAxis(new TemperatureAxis()),
@@ -111,6 +111,9 @@ ProfileWidget2::ProfileWidget2(QWidget *parent) : QGraphicsView(parent),
shouldCalculateMaxDepth(true),
fontPrintScale(1.0)
{
+ // would like to be able to ASSERT here that PreferencesDialog::loadSettings has been called.
+ isPlotZoomed = prefs.zoomed_plot; // now it seems that 'prefs' has loaded our preferences
+
memset(&plotInfo, 0, sizeof(plotInfo));
setupSceneAndFlags();