mirror of
https://github.com/OrcaSlicer/OrcaSlicer.git
synced 2026-05-19 03:13:39 +00:00
Disable vibration limit. #785
This commit is contained in:
@@ -416,7 +416,7 @@ our $Options = {
|
||||
sidetext => 'Hz',
|
||||
cli => 'vibration-limit=f',
|
||||
type => 'f',
|
||||
default => 25,
|
||||
default => 0,
|
||||
},
|
||||
|
||||
# print options
|
||||
|
||||
@@ -168,7 +168,7 @@ sub extrude_path {
|
||||
}
|
||||
|
||||
# only apply vibration limiting to gap fill until the algorithm is more mature
|
||||
$self->limit_frequency($path->role == EXTR_ROLE_GAPFILL);
|
||||
$self->limit_frequency($path->role == EXTR_ROLE_GAPFILL) if 0;
|
||||
|
||||
# go to first point of extrusion path
|
||||
$self->speed('travel');
|
||||
|
||||
@@ -634,10 +634,6 @@ sub build {
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
title => 'Advanced',
|
||||
options => [qw(vibration_limit)],
|
||||
},
|
||||
]);
|
||||
|
||||
$self->add_options_page('Custom G-code', 'cog.png', optgroups => [
|
||||
|
||||
Reference in New Issue
Block a user