Preferences: Fixed typo after improvements related to Download path

This commit is contained in:
YuSanka 2023-01-09 09:00:59 +01:00
parent 4bb768c1ce
commit ec6daeb1d3

View File

@ -562,7 +562,7 @@ void PreferencesDialog::build()
if (opt_key == "suppress_hyperlinks") if (opt_key == "suppress_hyperlinks")
m_values[opt_key] = boost::any_cast<bool>(value) ? "1" : ""; m_values[opt_key] = boost::any_cast<bool>(value) ? "1" : "";
else else
m_values[opt_key] = boost::any_cast<bool>(value) ? "1" : "0"; m_values[opt_key] = boost::any_cast<bool>(value) ? "1" : "0"; m_values[opt_key] = boost::any_cast<bool>(value) ? "1" : "0";
}; };