Fixed crash on reading profiles with the "thumbnails" settings different

from the parent profile.
This commit is contained in:
bubnikv 2020-02-24 10:41:20 +01:00
parent 6ddb21fe06
commit d5bffd2816

View File

@ -1372,7 +1372,7 @@ inline t_config_option_keys deep_diff(const ConfigBase &config_this, const Confi
const ConfigOption *other_opt = config_other.option(opt_key);
if (this_opt != nullptr && other_opt != nullptr && *this_opt != *other_opt)
{
if (opt_key == "bed_shape" || opt_key == "compatible_prints" || opt_key == "compatible_printers") {
if (opt_key == "bed_shape" || opt_key == "thumbnails" || opt_key == "compatible_prints" || opt_key == "compatible_printers") {
diff.emplace_back(opt_key);
continue;
}