From 0970457a46ca2c32966ef05e323c87fc514365ac Mon Sep 17 00:00:00 2001 From: bubnikv Date: Mon, 7 Jan 2019 14:52:13 +0100 Subject: [PATCH] Reverted a buggy change done in c0ebcacf1d62d44d247755c9c0d9c681d3579651 --- src/slic3r/GUI/GUI.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/slic3r/GUI/GUI.cpp b/src/slic3r/GUI/GUI.cpp index 0761845b67..df5c1d4076 100644 --- a/src/slic3r/GUI/GUI.cpp +++ b/src/slic3r/GUI/GUI.cpp @@ -148,7 +148,7 @@ void change_opt_value(DynamicPrintConfig& config, const t_config_option_key& opt config.set_key_value(opt_key, new ConfigOptionString(boost::any_cast(value))); break; case coStrings:{ - if (opt_key == "compatible_prints" || opt_key == "compatible_printers" || opt_key == "post_process") { + if (opt_key == "compatible_prints" || opt_key == "compatible_printers") { config.option(opt_key)->values = boost::any_cast>(value); }