From 6da196b419183ed47ba9d10e5de8f52823d9e40f Mon Sep 17 00:00:00 2001 From: Lukas Matena Date: Mon, 5 Aug 2019 15:12:35 +0200 Subject: [PATCH] Corrected return value of ConfigOptionVector::apply_override to what was intended (this didn't cause any bug though, the return value is currently not used) --- 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 2850f1cb90..ff55632262 100644 --- a/src/libslic3r/Config.hpp +++ b/src/libslic3r/Config.hpp @@ -375,7 +375,7 @@ public: this->values[i] = rhs_vec->values[i]; modified = true; } - return false; + return modified; } private: