Merge pull request #621 from mkbel/fix_menu_return_unload

Return to main menu from filament unloading.
This commit is contained in:
PavelSindler 2018-04-13 18:34:41 +02:00 committed by GitHub
commit c50dbdc41e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -1877,7 +1877,7 @@ void lcd_unLoadFilament()
lcd_implementation_clear();
}
lcd_return_to_status();
menu_action_back();
}
void lcd_change_filament() {
@ -5635,7 +5635,7 @@ static void lcd_main_menu()
else
#endif //PAT9125
MENU_ITEM(function, MSG_LOAD_FILAMENT, lcd_LoadFilament);
MENU_ITEM(function, MSG_UNLOAD_FILAMENT, lcd_unLoadFilament);
MENU_ITEM(submenu, MSG_UNLOAD_FILAMENT, lcd_unLoadFilament);
#endif
#ifdef SNMM
MENU_ITEM(submenu, MSG_LOAD_FILAMENT, fil_load_menu);