Skip to content

Commit

Permalink
Merge branch 'bugfix-2.1.x-polargraph' into bugfix-2.1.x-polargraph-w…
Browse files Browse the repository at this point in the history
…ith-config
  • Loading branch information
i-make-robots committed Jun 20, 2023
2 parents cf9cf5e + 9aea8e9 commit fceb65d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -170,3 +170,4 @@ __pycache__

# IOLogger logs
*_log.csv
.vscode/extensions.json
2 changes: 1 addition & 1 deletion Marlin/src/lcd/menu/menu_advanced.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -677,7 +677,7 @@ void menu_advanced_settings() {
EDIT_ITEM_FAST(float51sign, MSG_DRAW_MAX_X, &draw_area_max.x, draw_area_min.x + 10, X_MAX_POS); // M665 R
EDIT_ITEM_FAST(float51sign, MSG_DRAW_MIN_Y, &draw_area_min.y, Y_MIN_POS, draw_area_max.y - 10); // M665 T
EDIT_ITEM_FAST(float51sign, MSG_DRAW_MAX_Y, &draw_area_max.y, draw_area_min.y + 10, Y_MAX_POS); // M665 B
EDIT_ITEM_FAST(float51sign, MSG_MAX_BELT_LEN, &polargraph_max_belt_len, 500, 2000); // M665 H
EDIT_ITEM_FAST(float51sign, MSG_MAX_BELT_LEN, &polargraph_max_belt_len, 500, POLARGRAPH_MAX_BELT_LEN+100); // M665 H
}
#endif

Expand Down

0 comments on commit fceb65d

Please sign in to comment.