Skip to content

Commit

Permalink
Fix mesh point sign
Browse files Browse the repository at this point in the history
Most obvious part of MarlinFirmware#17670

Co-Authored-By: FilippoR <filippo.rossoni@gmail.com>
  • Loading branch information
2 people authored and Emmanuel Viala committed Aug 21, 2020
1 parent a338e8b commit 98f674a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Marlin/src/lcd/menu/menu_ubl.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,8 @@ static int16_t ubl_storage_slot = 0,
ubl_fillin_amount = 5,
ubl_height_amount = 1;

static uint8_t n_edit_pts = 1, x_plot = 0, y_plot = 0;
static uint8_t n_edit_pts = 1;
static int8_t x_plot = 0, y_plot = 0; // May be negative during move

#if HAS_HEATED_BED
static int16_t custom_bed_temp = 50;
Expand Down

0 comments on commit 98f674a

Please sign in to comment.