mirror of
https://github.com/OrcaSlicer/OrcaSlicer.git
synced 2026-05-17 10:32:20 +00:00
Moved Temperature under filament options
This commit is contained in:
@@ -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' => {
|
||||
|
||||
@@ -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',
|
||||
|
||||
Reference in New Issue
Block a user