minor improvements

Configuration_store.cpp - changed a couple of print statements so the
values were printed.  The old method resulted in the formula being
printed.

ubl_G29
1) added support for R option to P4.  Now probes all points unless R is
present and the number is greater than 0.

2) P2 - moved map print statement so it showed the point that was
currently being probed,  The old location did this only for the first
point.

3) P4 - Moved the map print for the same reason.

ultralcd.cpp - changed "Mesh Editor :" to "Mesh Editor" because the LCD
draw routine puts a ":" in automatically so you end up with an extra ":"
using the old message.
This commit is contained in:
Bob-the-Kuhn
2017-04-14 23:47:11 -05:00
committed by Roxy-3D
parent 5a97a7be97
commit 60471b7592
3 changed files with 13 additions and 8 deletions

View File

@ -915,12 +915,12 @@ void kill_screen(const char* lcd_msg) {
}
void _lcd_mesh_edit() {
_lcd_mesh_fine_tune(PSTR("Mesh Editor: "));
_lcd_mesh_fine_tune(PSTR("Mesh Editor"));
}
float lcd_mesh_edit() {
lcd_goto_screen(_lcd_mesh_edit_NOP);
_lcd_mesh_fine_tune(PSTR("Mesh Editor: "));
_lcd_mesh_fine_tune(PSTR("Mesh Editor"));
return mesh_edit_value;
}