ellensp
5 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
5 additions and
1 deletions
-
Marlin/src/lcd/menu/menu_motion.cpp
|
|
@ -250,7 +250,11 @@ void _menu_move_distance(const AxisEnum axis, const screenFunc_t func, const int |
|
|
|
if (axis == Z_AXIS && (SHORT_MANUAL_Z_MOVE) > 0.0f && (SHORT_MANUAL_Z_MOVE) < 0.1f) { |
|
|
|
extern const char NUL_STR[]; |
|
|
|
SUBMENU_P(NUL_STR, []{ _goto_manual_move(float(SHORT_MANUAL_Z_MOVE)); }); |
|
|
|
MENU_ITEM_ADDON_START(0); |
|
|
|
MENU_ITEM_ADDON_START(0 |
|
|
|
#if HAS_CHARACTER_LCD |
|
|
|
+ 1 |
|
|
|
#endif |
|
|
|
); |
|
|
|
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 : |
|
|
|