Skip to content

Commit

Permalink
πŸ› Fix Ender-3 V2 Enhanced SetFlow (MarlinFirmware#23016)
Browse files Browse the repository at this point in the history
  • Loading branch information
mriscoc authored and mh-dm committed May 15, 2022
1 parent 61e7560 commit 44533fa
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Marlin/src/lcd/e3v2/enhanced/dwin.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2343,7 +2343,8 @@ void SetSpeed() { SetPIntOnClick(MIN_PRINT_SPEED, MAX_PRINT_SPEED); }

#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
void LevBed(uint8_t point) {
Expand Down

0 comments on commit 44533fa

Please sign in to comment.