🐛 Fix Ender-3 V2 Enhanced SetFlow (#23016)
This commit is contained in:
parent
5f35c539ce
commit
f51e07b196
|
@ -2343,7 +2343,8 @@ void SetSpeed() { SetPIntOnClick(MIN_PRINT_SPEED, MAX_PRINT_SPEED); }
|
||||||
|
|
||||||
#endif // ADVANCED_PAUSE_FEATURE
|
#endif // ADVANCED_PAUSE_FEATURE
|
||||||
|
|
||||||
void SetFlow() { SetPIntOnClick(MIN_PRINT_FLOW, MAX_PRINT_FLOW); }
|
void ApplyFlow() { planner.refresh_e_factor(0); }
|
||||||
|
void SetFlow() { SetPIntOnClick(MIN_PRINT_FLOW, MAX_PRINT_FLOW, ApplyFlow); }
|
||||||
|
|
||||||
// Leveling Bed Corners
|
// Leveling Bed Corners
|
||||||
void LevBed(uint8_t point) {
|
void LevBed(uint8_t point) {
|
||||||
|
|
Loading…
Reference in a new issue