Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/supermerill/SuperSlicer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYuSanka <yusanka@gmail.com>2018-11-22 18:08:41 +0300
committerYuSanka <yusanka@gmail.com>2018-11-22 18:09:28 +0300
commit421fbe3a3c9f7ede769828b34682fa0f9c199cad (patch)
tree2794e8184b56e314f898b9c974982aa340833f21 /src/slic3r/GUI/GUI.cpp
parent9d7b4ce41dd02c09880fe41031f9f2911f786502 (diff)
Fixed updating of the value for "Post processing scripts" field
Diffstat (limited to 'src/slic3r/GUI/GUI.cpp')
-rw-r--r--src/slic3r/GUI/GUI.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/slic3r/GUI/GUI.cpp b/src/slic3r/GUI/GUI.cpp
index 164cb4a41..a809fe6bf 100644
--- a/src/slic3r/GUI/GUI.cpp
+++ b/src/slic3r/GUI/GUI.cpp
@@ -165,7 +165,7 @@ void change_opt_value(DynamicPrintConfig& config, const t_config_option_key& opt
std::vector<std::string> values;
boost::split(values, str, boost::is_any_of(";"));
if (values.size() == 1 && values[0] == "")
- break;
+ values.resize(0);//break;
config.option<ConfigOptionStrings>(opt_key)->values = values;
}
else{