Moved Temperature under filament options

This commit is contained in:
Alessandro Ranellucci 2011-10-09 22:29:13 +02:00
parent 84abd41cf4
commit 332d55f854
3 changed files with 10 additions and 9 deletions

View file

@ -1,6 +1,7 @@
package Slic3r::Config;
use strict;
use warnings;
use utf8;
use constant PI => 4 * atan2(1, 1);
@ -32,9 +33,13 @@ our $Options = {
type => 'f',
},
'filament_packing_density' => {
label => 'Packing density (mm)',
label => 'Packing density',
type => 'f',
},
'temperature' => {
label => 'Temperature (°C)',
type => 'i',
},
# speed options
'print_feed_rate' => {
@ -81,10 +86,6 @@ our $Options = {
label => 'Fill angle (°)',
type => 'i',
},
'temperature' => {
label => 'Temperature (°C)',
type => 'i',
},
# retraction options
'retract_length' => {

View file

@ -21,7 +21,7 @@ sub new {
),
filament => Slic3r::GUI::OptionsGroup->new($self,
title => 'Filament',
options => [qw(filament_diameter filament_packing_density)],
options => [qw(filament_diameter filament_packing_density temperature)],
),
speed => Slic3r::GUI::OptionsGroup->new($self,
title => 'Speed',
@ -33,7 +33,7 @@ sub new {
),
print => Slic3r::GUI::OptionsGroup->new($self,
title => 'Print settings',
options => [qw(perimeter_offsets solid_layers fill_density fill_angle temperature)],
options => [qw(perimeter_offsets solid_layers fill_density fill_angle)],
),
retract => Slic3r::GUI::OptionsGroup->new($self,
title => 'Retraction',