mirror of
https://github.com/opentx/opentx.git
synced 2025-07-19 22:35:12 +03:00
Fix 9x navigation (#6793)
This commit is contained in:
parent
4ad0a5f978
commit
c97e4bd7be
1 changed files with 1 additions and 1 deletions
|
@ -105,7 +105,7 @@ void menuModelSensor(event_t event)
|
||||||
lcdDrawTextAlignedLeft(y, STR_ID);
|
lcdDrawTextAlignedLeft(y, STR_ID);
|
||||||
lcdDrawHexNumber(SENSOR_2ND_COLUMN, y, sensor->id, LEFT|(menuHorizontalPosition==0 ? attr : 0));
|
lcdDrawHexNumber(SENSOR_2ND_COLUMN, y, sensor->id, LEFT|(menuHorizontalPosition==0 ? attr : 0));
|
||||||
lcdDrawHexChar(SENSOR_3RD_COLUMN, y, sensor->instance & 0x1f, LEFT|(menuHorizontalPosition==1 ? attr : 0));
|
lcdDrawHexChar(SENSOR_3RD_COLUMN, y, sensor->instance & 0x1f, LEFT|(menuHorizontalPosition==1 ? attr : 0));
|
||||||
if (attr) {
|
if (attr && s_editMode > 0) {
|
||||||
switch (menuHorizontalPosition) {
|
switch (menuHorizontalPosition) {
|
||||||
case 0:
|
case 0:
|
||||||
CHECK_INCDEC_MODELVAR_ZERO(event, sensor->id, 0xffff);
|
CHECK_INCDEC_MODELVAR_ZERO(event, sensor->id, 0xffff);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue