Skip to content

Commit

Permalink
Fix "confused intellisense" (#15817)
Browse files Browse the repository at this point in the history
  • Loading branch information
shitcreek authored and thinkyhead committed Nov 6, 2019
1 parent f5b5b9e commit 4ee3502
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions Marlin/src/lcd/menu/menu_bed_corners.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -97,14 +97,14 @@ static inline void _lcd_level_bed_corners_homing() {
#endif
ui.goto_previous_screen_no_defer();
},
GET_TEXT((
#if ENABLED(LEVEL_CENTER_TOO)
MSG_LEVEL_BED_NEXT_POINT
#else
MSG_NEXT_CORNER
#endif
)), (PGM_P)nullptr, PSTR("?")
);
GET_TEXT(
#if ENABLED(LEVEL_CENTER_TOO)
MSG_LEVEL_BED_NEXT_POINT
#else
MSG_NEXT_CORNER
#endif
), (PGM_P)nullptr, PSTR("?")
);
ui.set_selection(true);
_lcd_goto_next_corner();
}
Expand Down

0 comments on commit 4ee3502

Please sign in to comment.