From ba730922e6fac124ff37e25d2896364fb0a6e5bd Mon Sep 17 00:00:00 2001 From: YuSanka Date: Mon, 9 Jan 2023 13:04:46 +0100 Subject: [PATCH] TabPrinter: Change field height for Start/Stop G-codes --- src/slic3r/GUI/Tab.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/slic3r/GUI/Tab.cpp b/src/slic3r/GUI/Tab.cpp index cf3b96d80..796ce622b 100644 --- a/src/slic3r/GUI/Tab.cpp +++ b/src/slic3r/GUI/Tab.cpp @@ -2373,7 +2373,7 @@ void TabPrinter::build_fff() option = optgroup->get_option("start_gcode"); option.opt.full_width = true; option.opt.is_code = true; - option.opt.height = gcode_field_height;//150; + option.opt.height = 3 * gcode_field_height;//150; optgroup->append_single_option_line(option); optgroup = page->new_optgroup(L("End G-code"), 0); @@ -2383,7 +2383,7 @@ void TabPrinter::build_fff() option = optgroup->get_option("end_gcode"); option.opt.full_width = true; option.opt.is_code = true; - option.opt.height = gcode_field_height;//150; + option.opt.height = 1.75 * gcode_field_height;//150; optgroup->append_single_option_line(option); optgroup = page->new_optgroup(L("Before layer change G-code"), 0);