remove unused param from legacy fill

Kaalleen 2024-05-02 18:44:09 +02:00
rodzic ad2914284e
commit 5cdf7b5b07
1 zmienionych plików z 7 dodań i 0 usunięć

Wyświetl plik

@ -461,6 +461,13 @@ class FillStitch(EmbroideryElement):
unit='mm',
type='float',
default=0.1,
select_items=[('fill_method', 'auto_fill'),
('fill_method', 'contour_fill'),
('fill_method', 'guided_fill'),
('fill_method', 'meander_fill'),
('fill_method', 'circular_fill'),
('fill_method', 'linear_gradient_fill'),
('fill_method', 'tartan_fill')],
sort_index=32)
def running_stitch_tolerance(self):
return max(self.get_float_param("running_stitch_tolerance_mm", 0.2), 0.01)