New separate option to control the addition of automatic extra perimeters. Also, add none if perimeters are set to 0. #459

This commit is contained in:
Alessandro Ranellucci 2012-06-23 17:10:30 +02:00
parent f61a1f5a07
commit 410279823c
6 changed files with 58 additions and 48 deletions

View file

@ -78,7 +78,7 @@ sub new {
},
other => {
title => 'Other',
options => [$Slic3r::have_threads ? qw(threads) : ()],
options => [ ($Slic3r::have_threads ? qw(threads) : ()), qw(extra_perimeters) ],
},
notes => {
title => 'Notes',
@ -112,7 +112,7 @@ sub new {
$make_tab->([qw(cooling)]),
$make_tab->([qw(printer filament)], [qw(print_speed speed)]),
$make_tab->([qw(gcode)]),
$make_tab->([qw(extrusion other sequential_printing)], [qw(output)]),
$make_tab->([qw(extrusion sequential_printing)], [qw(output other)]),
);
$tabpanel->AddPage(Slic3r::GUI::Plater->new($tabpanel), "Plater");