From a2c28fd6da311cd2b9538f2839e892d3570d363b Mon Sep 17 00:00:00 2001 From: Alessandro Ranellucci Date: Tue, 7 Aug 2012 21:11:58 +0200 Subject: [PATCH] Move retraction settings to a temporary page until we merge the per-extruder-retraction-settings branch --- lib/Slic3r/GUI/Tab.pm | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/lib/Slic3r/GUI/Tab.pm b/lib/Slic3r/GUI/Tab.pm index 6dc19c2bd9..881025ca4a 100644 --- a/lib/Slic3r/GUI/Tab.pm +++ b/lib/Slic3r/GUI/Tab.pm @@ -557,6 +557,13 @@ sub build { }, ]); + $self->add_options_page('Retraction', 'arrow_up.png', optgroups => [ + { + title => 'Retraction', + options => [qw(retract_length retract_lift retract_speed retract_restart_extra retract_before_travel)], + }, + ]); + $self->add_options_page('Custom G-code', 'cog.png', optgroups => [ { title => 'Start G-code', @@ -604,10 +611,6 @@ sub _build_extruder_pages { title => 'Size', options => ['nozzle_diameter#' . $extruder_idx], }, - { - title => 'Retraction', - options => [qw(retract_length retract_lift retract_speed retract_restart_extra retract_before_travel)], - }, ]); $self->{extruder_pages}[$extruder_idx]{disabled} = 0; }