Fix when value edited, other values appeard as +1.000 instead of [off].
This commit is contained in:
parent
df61172984
commit
085c77effb
1 changed files with 1 additions and 1 deletions
|
@ -318,7 +318,7 @@ void menu_draw_P<uint8_t*>(char chr, const char* str, int16_t val)
|
||||||
strcpy_P(spaces, menu_20x_space);
|
strcpy_P(spaces, menu_20x_space);
|
||||||
spaces[12 - text_len] = 0;
|
spaces[12 - text_len] = 0;
|
||||||
float factor = 1.0 + static_cast<float>(val) / 1000.0;
|
float factor = 1.0 + static_cast<float>(val) / 1000.0;
|
||||||
if (val == _md->minEditValue)
|
if (val <= _md->minEditValue)
|
||||||
{
|
{
|
||||||
lcd_printf_P(menu_fmt_float13off, chr, str, spaces);
|
lcd_printf_P(menu_fmt_float13off, chr, str, spaces);
|
||||||
lcd_puts_P(_i(" [off]"));
|
lcd_puts_P(_i(" [off]"));
|
||||||
|
|
Loading…
Add table
Reference in a new issue