Browse Source

Fix "confused intellisense" (#15817)

Luu Lac 4 years ago
parent
commit
4ee3502c8f
1 changed files with 8 additions and 8 deletions
  1. 8
    8
      Marlin/src/lcd/menu/menu_bed_corners.cpp

+ 8
- 8
Marlin/src/lcd/menu/menu_bed_corners.cpp View File

97
         #endif
97
         #endif
98
         ui.goto_previous_screen_no_defer();
98
         ui.goto_previous_screen_no_defer();
99
       },
99
       },
100
-      GET_TEXT((
101
-        #if ENABLED(LEVEL_CENTER_TOO)
102
-          MSG_LEVEL_BED_NEXT_POINT
103
-        #else
104
-          MSG_NEXT_CORNER
105
-        #endif
106
-      )), (PGM_P)nullptr, PSTR("?")
107
-    );
100
+      GET_TEXT(
101
+      #if ENABLED(LEVEL_CENTER_TOO)
102
+        MSG_LEVEL_BED_NEXT_POINT
103
+      #else
104
+        MSG_NEXT_CORNER
105
+      #endif
106
+      ), (PGM_P)nullptr, PSTR("?")
107
+      );
108
     ui.set_selection(true);
108
     ui.set_selection(true);
109
     _lcd_goto_next_corner();
109
     _lcd_goto_next_corner();
110
   }
110
   }

Loading…
Cancel
Save