Browse Source

🐛 Fix Ender-3 V2 Enhanced SetFlow (#23016)

Miguel Risco-Castillo 3 years ago
parent
commit
70863058cd
1 changed files with 2 additions and 1 deletions
  1. 2
    1
      Marlin/src/lcd/e3v2/enhanced/dwin.cpp

+ 2
- 1
Marlin/src/lcd/e3v2/enhanced/dwin.cpp View File

2343
 
2343
 
2344
 #endif // ADVANCED_PAUSE_FEATURE
2344
 #endif // ADVANCED_PAUSE_FEATURE
2345
 
2345
 
2346
-void SetFlow() { SetPIntOnClick(MIN_PRINT_FLOW, MAX_PRINT_FLOW); }
2346
+void ApplyFlow() { planner.refresh_e_factor(0); }
2347
+void SetFlow() { SetPIntOnClick(MIN_PRINT_FLOW, MAX_PRINT_FLOW, ApplyFlow); }
2347
 
2348
 
2348
 // Leveling Bed Corners
2349
 // Leveling Bed Corners
2349
 void LevBed(uint8_t point) {
2350
 void LevBed(uint8_t point) {

Loading…
Cancel
Save