Bugfix: *-acceleration options didn't work in CLI

This commit is contained in:
Alessandro Ranellucci 2013-03-09 20:21:05 +01:00
parent 460e169c67
commit b7b89ff7f2

View File

@ -323,7 +323,7 @@ our $Options = {
label => 'Default',
tooltip => 'This is the acceleration your printer will be reset to after the role-specific acceleration values are used (perimeter/infill). Set zero to prevent resetting acceleration at all.',
sidetext => 'mm/s²',
cli => 'default-acceleration',
cli => 'default-acceleration=f',
type => 'f',
default => 0,
},
@ -331,7 +331,7 @@ our $Options = {
label => 'Perimeters',
tooltip => 'This is the acceleration your printer will use for perimeters. A high value like 9000 usually gives good results if your hardware is up to the job. Set zero to disable acceleration control for perimeters.',
sidetext => 'mm/s²',
cli => 'perimeter-acceleration',
cli => 'perimeter-acceleration=f',
type => 'f',
default => 0,
},
@ -339,7 +339,7 @@ our $Options = {
label => 'Infill',
tooltip => 'This is the acceleration your printer will use for infill. Set zero to disable acceleration control for infill.',
sidetext => 'mm/s²',
cli => 'infill-acceleration',
cli => 'infill-acceleration=f',
type => 'f',
default => 0,
},