Browse Source

Update Marlin_main.cpp

fixed minor typo
Bernhard Kubicek 9 years ago
parent
commit
f24c5d82e3
1 changed files with 2 additions and 2 deletions
  1. 2
    2
      Marlin/Marlin_main.cpp

+ 2
- 2
Marlin/Marlin_main.cpp View File

@@ -3616,7 +3616,7 @@ case 404:  //M404 Enter the nominal filament width (3mm, 1.75mm ) N<3.0> or disp
3616 3616
         while(!lcd_clicked()){
3617 3617
           cnt++;
3618 3618
           manage_heater();
3619
-          manage_inactivity(false);
3619
+          manage_inactivity(true);
3620 3620
           lcd_update();
3621 3621
           if(cnt==0)
3622 3622
           {
@@ -4335,7 +4335,7 @@ void manage_inactivity(bool ignore_stepper_queue=false)
4335 4335
   if(stepper_inactive_time)  {
4336 4336
     if( (millis() - previous_millis_cmd) >  stepper_inactive_time )
4337 4337
     {
4338
-      if(blocks_queued() == false && ignore_stepper_queue != true) {
4338
+      if(blocks_queued() == false && ignore_stepper_queue == false) {
4339 4339
         disable_x();
4340 4340
         disable_y();
4341 4341
         disable_z();

Loading…
Cancel
Save