Skip to content

Commit 56185c8

Browse files
committed
fix: change even more defaults
1 parent 0f31aeb commit 56185c8

File tree

2 files changed

+7
-4
lines changed

2 files changed

+7
-4
lines changed

settings.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -76,14 +76,14 @@ hardware:
7676
V: 200
7777
E: 120
7878
slicing:
79-
angle: 30
79+
angle: 40
8080
bed_temperature: 60
8181
bottom_of_cut_layers: 1
8282
cmd: ./lib/goosli --cmd=slice --settings=
8383
cmd_version: ./lib/goosli --version
8484
consumption_material: 0
8585
extruder_temperature: 200
86-
fan_off_layer1: false
86+
fan_off_layer1: true
8787
fan_speed: 95
8888
fill_density: 20
8989
filling_type: Triangles
@@ -157,12 +157,12 @@ slicing:
157157
area: 0.1
158158
fan_speed: 20
159159
supports:
160-
enabled: true
160+
enabled: false
161161
xy_offset: 0.3
162162
z_offset_layers: 1
163163
priority_z_offset: true
164164
fill_type: Lines
165-
fill_density: 5
165+
fill_density: 25
166166
bottoms_depth: 0
167167
lids_depth: 0
168168
create_walls: true

src/settings_widget.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1257,6 +1257,9 @@ def on_change():
12571257
retraction_compensation_value = QDoubleSpinBox()
12581258
retraction_compensation_value.setMinimum(0.0)
12591259
retraction_compensation_value.setMaximum(9999.0)
1260+
retraction_compensation_value.setValue(
1261+
self.sett().slicing.retract_compensation_amount
1262+
)
12601263
retraction_compensation_value.validator = FloatValidator()
12611264
panel.addWidget(retraction_compensation_label, panel_next_row(), 1)
12621265
panel.addWidget(

0 commit comments

Comments
 (0)