Skip to content

Commit

Permalink
Move and ExtruderTune menu unit steps bugfix (bigtreetech#1774)
Browse files Browse the repository at this point in the history
  • Loading branch information
kisslorand committed Apr 1, 2021
1 parent 5bb36a7 commit 5e3cd53
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
3 changes: 2 additions & 1 deletion TFT/src/User/Menu/Move.c
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ void menuMove(void)
MENUITEMS moveItems = {
// title
LABEL_MOVE,
// icon label
// icon label
{
#ifdef ALTERNATIVE_MOVE_MENU
{ICON_Z_DEC, LABEL_Z_DEC},
Expand Down Expand Up @@ -92,6 +92,7 @@ void menuMove(void)
else
LOAD_XYZ_LABEL_INDEX(table[Z_AXIS][0], DEC, table[Z_AXIS][1], INC, Z);

moveItems.items[KEY_ICON_3] = itemMoveLen[item_moveLen_index];
menuDrawPage(&moveItems);
mustStoreCmd("G91\n");
mustStoreCmd("M114\n");
Expand Down
1 change: 1 addition & 0 deletions TFT/src/User/Menu/TuneExtruder.c
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,7 @@ void menuTuneExtruder(void)

heatSetUpdateSeconds(TEMPERATURE_QUERY_FAST_SECONDS);

tuneExtruderItems.items[KEY_ICON_5] = itemDegreeSteps[degreeSteps_index];
menuDrawPage(&tuneExtruderItems);
showExtrudeTemperature(c_heater, false);

Expand Down

0 comments on commit 5e3cd53

Please sign in to comment.