diff options
author | Tomaz Canabrava <tomaz.canabrava@intel.com> | 2014-09-20 17:56:56 -0300 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2014-09-20 18:36:08 -0700 |
commit | 84fdbefb58c744d0f851769e41f2d0e2c572c000 (patch) | |
tree | 54b9ff6471f883c1150aa93915d093d30dcb2c59 /qt-ui/mainwindow.cpp | |
parent | 2b760bdd394bafde3c2ed7fb3b8aa8c258db29cc (diff) | |
download | subsurface-84fdbefb58c744d0f851769e41f2d0e2c572c000.tar.gz |
Fix typo that broke settings.
A small typo broke the disabling of the graphs for the
newly added curves. ( btw, we need a designer to display
the graphs in a better way, just too much information. )
Signed-off-by: Tomaz Canabrava <tomaz.canabrava@intel.com>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'qt-ui/mainwindow.cpp')
-rw-r--r-- | qt-ui/mainwindow.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qt-ui/mainwindow.cpp b/qt-ui/mainwindow.cpp index 30227a478..dfe8a2380 100644 --- a/qt-ui/mainwindow.cpp +++ b/qt-ui/mainwindow.cpp @@ -815,7 +815,7 @@ void MainWindow::readSettings() TOOLBOX_PREF_BUTTON(show_sac, show_sac, profSAC); TOOLBOX_PREF_BUTTON(show_pictures_in_profile, show_pictures_in_profile, profTogglePicture); TOOLBOX_PREF_BUTTON(tankbar, tankbar, profTankbar); - TOOLBOX_PREF_BUTTON(percentagegraph, precentagegraph, profTissues); + TOOLBOX_PREF_BUTTON(percentagegraph, percentagegraph, profTissues); s.endGroup(); s.beginGroup("DiveComputer"); default_dive_computer_vendor = getSetting(s, "dive_computer_vendor"); |