summaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
authorGravatar Jan Mulder <jlmulder@xs4all.nl>2017-11-07 13:54:33 +0100
committerGravatar Jan Mulder <jlmulder@xs4all.nl>2017-11-07 18:36:28 +0100
commit828f608b2b1e5f7754c39bf60dccdabca78c3fb6 (patch)
treefcb2a1612848b66aa564c255e50fa6e80bbb9a57 /core
parent3ab016bfda5442b163262cfdd81ba1e11ea4dd63 (diff)
downloadsubsurface-828f608b2b1e5f7754c39bf60dccdabca78c3fb6.tar.gz
Save font_size in correct group
A change of the font_size in preferences ended up in the wrong preferences group (the GeneralSettings group), appearing to the user as a non-saved preference. Fix is simple. Just set the the correct group before saving a change in font_size. Fixes: #780 Signed-off-by: Jan Mulder <jlmulder@xs4all.nl>
Diffstat (limited to 'core')
-rw-r--r--core/subsurface-qt/SettingsObjectWrapper.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/core/subsurface-qt/SettingsObjectWrapper.cpp b/core/subsurface-qt/SettingsObjectWrapper.cpp
index bc941f58d..3787d27dd 100644
--- a/core/subsurface-qt/SettingsObjectWrapper.cpp
+++ b/core/subsurface-qt/SettingsObjectWrapper.cpp
@@ -1906,6 +1906,7 @@ void DisplaySettingsObjectWrapper::setFontSize(double value)
return;
QSettings s;
+ s.beginGroup(group);
s.setValue("font_size", value);
prefs.font_size = value;
QFont defaultFont = qApp->font();