Skip to content

Commit

Permalink
🐛 Fix Emder-3 V2 Enhanced SetFlow (#23016)
Browse files Browse the repository at this point in the history
  • Loading branch information
mriscoc authored Oct 25, 2021
1 parent 5ef0468 commit 6270df9
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 6270df9

Please sign in to comment.