Browse Source

Merge pull request #6644 from tcm0116/bltouch_menu

Move BLTouch LCD menu from Main to Main/Control
bgort 7 years ago
parent
commit
e2f07917ab
1 changed files with 4 additions and 4 deletions
  1. 4
    4
      Marlin/ultralcd.cpp

+ 4
- 4
Marlin/ultralcd.cpp View File

@@ -815,10 +815,6 @@ void kill_screen(const char* lcd_msg) {
815 815
         MENU_ITEM(function, MSG_LIGHTS_ON, toggle_case_light);
816 816
     #endif
817 817
 
818
-    #if ENABLED(BLTOUCH)
819
-      MENU_ITEM(submenu, MSG_BLTOUCH, bltouch_menu);
820
-    #endif
821
-
822 818
     if (planner.movesplanned() || IS_SD_PRINTING) {
823 819
       MENU_ITEM(submenu, MSG_TUNE, lcd_tune_menu);
824 820
     }
@@ -2152,6 +2148,10 @@ void kill_screen(const char* lcd_msg) {
2152 2148
       MENU_ITEM(submenu, MSG_DRIVE_STRENGTH, lcd_dac_menu);
2153 2149
     #endif
2154 2150
 
2151
+    #if ENABLED(BLTOUCH)
2152
+      MENU_ITEM(submenu, MSG_BLTOUCH, bltouch_menu);
2153
+    #endif
2154
+
2155 2155
     #if ENABLED(EEPROM_SETTINGS)
2156 2156
       MENU_ITEM(function, MSG_STORE_EEPROM, lcd_store_settings);
2157 2157
       MENU_ITEM(function, MSG_LOAD_EEPROM, lcd_load_settings);

Loading…
Cancel
Save