From d78315aefb0f0d3ede074fe177374fd134be5350 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 2850f1cb90b..ff55632262c 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: