Skip to content

Commit

Permalink
HAS_CHARACTER_LCD => HAS_MARLINUI_HD44780 (MarlinFirmware#19673)
Browse files Browse the repository at this point in the history
  • Loading branch information
ellensp authored and thinkyhead committed Oct 16, 2020
1 parent 9126a2e commit 958f05e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Marlin/src/lcd/menu/menu_probe_offset.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ void probe_offset_wizard_menu() {
if ((SHORT_MANUAL_Z_MOVE) > 0.0f && (SHORT_MANUAL_Z_MOVE) < 0.1f) {
extern const char NUL_STR[];
SUBMENU_P(NUL_STR, []{ _goto_manual_move_z(float(SHORT_MANUAL_Z_MOVE)); });
MENU_ITEM_ADDON_START(0 + ENABLED(HAS_CHARACTER_LCD));
MENU_ITEM_ADDON_START(0 + ENABLED(HAS_MARLINUI_HD44780));
char tmp[20], numstr[10];
// Determine digits needed right of decimal
const uint8_t digs = !UNEAR_ZERO((SHORT_MANUAL_Z_MOVE) * 1000 - int((SHORT_MANUAL_Z_MOVE) * 1000)) ? 4 :
Expand Down

0 comments on commit 958f05e

Please sign in to comment.