mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-08-05 21:14:01 -06:00
Disable vibration limit. #785
This commit is contained in:
parent
2abf2be781
commit
21a6219b62
5 changed files with 2 additions and 8 deletions
|
@ -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 => [
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue