|
@@ -438,8 +438,6 @@ void sync_plan_position();
|
438
|
438
|
|
439
|
439
|
void _lcd_ubl_output_map_lcd() {
|
440
|
440
|
|
441
|
|
- if (planner.movesplanned()) return;
|
442
|
|
-
|
443
|
441
|
static int16_t step_scaler = 0;
|
444
|
442
|
|
445
|
443
|
if (ui.use_click()) return _lcd_ubl_map_lcd_edit_cmd();
|
|
@@ -484,7 +482,8 @@ void _lcd_ubl_output_map_lcd() {
|
484
|
482
|
|
485
|
483
|
if (ui.should_draw()) {
|
486
|
484
|
ui.ubl_plot(x_plot, y_plot);
|
487
|
|
- ubl_map_move_to_xy(); // Move to new location
|
|
485
|
+ if (!planner.movesplanned())
|
|
486
|
+ ubl_map_move_to_xy(); // Move to new location
|
488
|
487
|
}
|
489
|
488
|
}
|
490
|
489
|
|