summaryrefslogtreecommitdiffstats
path: root/core/subsurface-qt/SettingsObjectWrapper.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'core/subsurface-qt/SettingsObjectWrapper.cpp')
-rw-r--r--core/subsurface-qt/SettingsObjectWrapper.cpp16
1 files changed, 16 insertions, 0 deletions
diff --git a/core/subsurface-qt/SettingsObjectWrapper.cpp b/core/subsurface-qt/SettingsObjectWrapper.cpp
index 7dff976fb..54b03aaf9 100644
--- a/core/subsurface-qt/SettingsObjectWrapper.cpp
+++ b/core/subsurface-qt/SettingsObjectWrapper.cpp
@@ -423,6 +423,11 @@ bool TechnicalDetailsSettings::showAverageDepth() const
return prefs.show_average_depth;
}
+bool TechnicalDetailsSettings::showIcd() const
+{
+ return prefs.show_icd;
+}
+
bool TechnicalDetailsSettings::mod() const
{
return prefs.mod;
@@ -718,6 +723,17 @@ void TechnicalDetailsSettings::setShowAverageDepth(bool value)
emit showAverageDepthChanged(value);
}
+void TechnicalDetailsSettings::setShowIcd(bool value)
+{
+ if (value == prefs.show_icd)
+ return;
+ QSettings s;
+ s.beginGroup(group);
+ s.setValue("show_icd", value);
+ prefs.show_icd = value;
+ emit showIcdChanged(value);
+}
+
FacebookSettings::FacebookSettings(QObject *parent) :
QObject(parent),
group(QStringLiteral("WebApps")),