Browse Source

Fix lcd_v2_calibration menu not redrawn after full screen message or question.

Marek Bel 5 years ago
parent
commit
d48197656c
1 changed files with 3 additions and 2 deletions
  1. 3 2
      Firmware/ultralcd.cpp

+ 3 - 2
Firmware/ultralcd.cpp

@@ -4518,6 +4518,8 @@ void lcd_v2_calibration()
 	    else
 	    {
 	        loaded = lcd_show_fullscreen_message_yes_no_and_wait_P(_i("Is filament loaded?"), false, true);////MSG_PLA_FILAMENT_LOADED c=20 r=2
+	        lcd_update_enabled = true;
+
 	    }
 
 
@@ -4531,15 +4533,14 @@ void lcd_v2_calibration()
 					break;
 				}
 			}
+			lcd_update_enabled = true;
 			menu_back();
-			lcd_update_enable(true);
 			return;
 		}
 	}
 
 	eFilamentAction = FilamentAction::Lay1Cal;
 	menu_goto(lcd_generic_preheat_menu, 0, true, true);
-	lcd_update_enable(true);
 }
 
 void lcd_wizard() {