🎨 Misc code and spacing cleanup
This commit is contained in:
@ -32,16 +32,7 @@
|
||||
* G10 - Retract filament according to settings of M207
|
||||
* TODO: Handle 'G10 P' for tool settings and 'G10 L' for workspace settings
|
||||
*/
|
||||
void GcodeSuite::G10() {
|
||||
#if HAS_MULTI_EXTRUDER
|
||||
const bool rs = parser.boolval('S');
|
||||
#endif
|
||||
fwretract.retract(true
|
||||
#if HAS_MULTI_EXTRUDER
|
||||
, rs
|
||||
#endif
|
||||
);
|
||||
}
|
||||
void GcodeSuite::G10() { fwretract.retract(true OPTARG(HAS_MULTI_EXTRUDER, parser.boolval('S'))); }
|
||||
|
||||
/**
|
||||
* G11 - Recover filament according to settings of M208
|
||||
|
Reference in New Issue
Block a user