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
path: root/src
diff options
context:
space:
mode:
authorsupermerill <merill@free.fr>2021-12-08 15:07:30 +0300
committersupermerill <merill@free.fr>2021-12-09 15:07:50 +0300
commita5aa9ffab8a0f65c26ab46508e7e04d85af9e89f (patch)
tree05ec05562d08dab1009202bdaa0a15b309e46251 /src
parent0c6cac7aac348ae172c1249148739e4799d055e1 (diff)
multi-line for milling custom gcode fields
supermerill/SuperSlicer#2027
Diffstat (limited to 'src')
-rw-r--r--src/libslic3r/PrintConfig.cpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/libslic3r/PrintConfig.cpp b/src/libslic3r/PrintConfig.cpp
index 2c9dd7e57..e67320a34 100644
--- a/src/libslic3r/PrintConfig.cpp
+++ b/src/libslic3r/PrintConfig.cpp
@@ -4980,6 +4980,9 @@ void PrintConfigDef::init_milling_params()
" next_extruder is the 'extruder number' of the new milling tool, it's equal to the index (begining at 0) of the milling tool plus the number of extruders."
" previous_extruder is the 'extruder number' of the previous tool, it may be a normal extruder, if it's below the number of extruders."
" The number of extruder is available at [extruder] and the number of milling tool is available at [milling_cutter].");
+ def->multiline = true;
+ def->full_width = true;
+ def->height = 12;
def->mode = comAdvanced;
def->is_vector_extruder = true;
def->set_default_value(new ConfigOptionStrings(""));
@@ -4991,6 +4994,9 @@ void PrintConfigDef::init_milling_params()
" previous_extruder is the 'extruder number' of the current milling tool, it's equal to the index (begining at 0) of the milling tool plus the number of extruders."
" next_extruder is the 'extruder number' of the next tool, it may be a normal extruder, if it's below the number of extruders."
" The number of extruder is available at [extruder]and the number of milling tool is available at [milling_cutter].");
+ def->multiline = true;
+ def->full_width = true;
+ def->height = 12;
def->mode = comAdvanced;
def->is_vector_extruder = true;
def->set_default_value(new ConfigOptionStrings(""));