PresetUpdate: Fix UpdateConfig dialog

This commit is contained in:
Vojtech Kral 2018-04-25 15:20:46 +02:00
parent b7bcf27cde
commit f23f86d91c

View File

@ -525,7 +525,7 @@ bool PresetUpdater::config_update() const
GUI::MsgUpdateConfig dlg(std::move(updates_map));
const auto res = dlg.ShowModal();
if (res == wxID_YES) {
if (res == wxID_OK) {
BOOST_LOG_TRIVIAL(debug) << "User agreed to perform the update";
p->perform_updates(std::move(updates));
} else {