mirror of
https://git.mirrors.martin98.com/https://github.com/SoftFever/OrcaSlicer.git
synced 2025-08-04 18:00:39 +08:00
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
This commit is contained in:
parent
b8531b86e4
commit
add67d769a
@ -1443,7 +1443,7 @@ public:
|
|||||||
unsigned char new_value = 0;
|
unsigned char new_value = 0;
|
||||||
if (item_str == "nil") {
|
if (item_str == "nil") {
|
||||||
if (NULLABLE)
|
if (NULLABLE)
|
||||||
this->values.push_back(nil_value());
|
new_value = nil_value();
|
||||||
else
|
else
|
||||||
throw ConfigurationError("Deserializing nil into a non-nullable object");
|
throw ConfigurationError("Deserializing nil into a non-nullable object");
|
||||||
} else if (item_str == "1") {
|
} else if (item_str == "1") {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user