Skip to content

Commit f6ebc74

Browse files
committed
Fix e54664d
Fix an error introduced in e54664d.
1 parent 5c5ab1f commit f6ebc74

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/Settings.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ void Settings::setValue(const std::string& group, const std::string& name, const
108108
{
109109
// Sometime the value has to be saved for the current session only but get discarded when the application exits.
110110
// In order to achieve this this flag can be set which disables the save to disk mechanism and only leaves the save to cache part active.
111-
if(save_to_disk == false)
111+
if(save_to_disk)
112112
{
113113
setSettingsObject();
114114
// Set the group and save the given value

0 commit comments

Comments
 (0)