Browse Source

Print startup message after print statistics are loaded (#15664)

Roman Moravčík 5 years ago
parent
commit
e690471739
1 changed files with 2 additions and 2 deletions
  1. 2
    2
      Marlin/src/Marlin.cpp

+ 2
- 2
Marlin/src/Marlin.cpp View File

918
   #endif
918
   #endif
919
 
919
 
920
   ui.init();
920
   ui.init();
921
-  ui.reset_status();
922
-
923
   #if HAS_SPI_LCD && ENABLED(SHOW_BOOTSCREEN)
921
   #if HAS_SPI_LCD && ENABLED(SHOW_BOOTSCREEN)
924
     ui.show_bootscreen();
922
     ui.show_bootscreen();
925
   #endif
923
   #endif
948
 
946
 
949
   print_job_timer.init();   // Initial setup of print job timer
947
   print_job_timer.init();   // Initial setup of print job timer
950
 
948
 
949
+  ui.reset_status();        // Print startup message after print statistics are loaded
950
+
951
   endstops.init();          // Init endstops and pullups
951
   endstops.init();          // Init endstops and pullups
952
 
952
 
953
   stepper.init();           // Init stepper. This enables interrupts!
953
   stepper.init();           // Init stepper. This enables interrupts!

Loading…
Cancel
Save