From add67d769a7594959357e81bc31f573e6380d669 Mon Sep 17 00:00:00 2001 From: Vojtech Bubnik Date: Wed, 14 Jul 2021 10:13:52 +0200 Subject: [PATCH] Fix of 2.3.2 regression in configuration layer (reading of nullable boolean vectors) Fix of Filament overrides on saved 3MF MMU profiles are broken #6711 --- src/libslic3r/Config.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libslic3r/Config.hpp b/src/libslic3r/Config.hpp index 84f1a8c000..750b9411ce 100644 --- a/src/libslic3r/Config.hpp +++ b/src/libslic3r/Config.hpp @@ -1443,7 +1443,7 @@ public: unsigned char new_value = 0; if (item_str == "nil") { if (NULLABLE) - this->values.push_back(nil_value()); + new_value = nil_value(); else throw ConfigurationError("Deserializing nil into a non-nullable object"); } else if (item_str == "1") {