1
0
Fork 0
mirror of https://github.com/opentx/opentx.git synced 2025-07-23 00:05:17 +03:00

Fixes #1815: Stick icons missing next to trim key states on switch diag page

This commit is contained in:
Damjan Adamic 2014-11-02 13:35:31 +01:00
parent 5680c8e580
commit 5dc38fffe3

View file

@ -1261,7 +1261,7 @@ void menuGeneralDiagKeys(uint8_t event)
if (i<8) {
y = MENU_TITLE_HEIGHT + FH*3 + FH*(i/2);
lcd_img(14*FW, y, sticks, i/2, 0);
if (i&1) lcd_img(14*FW, y, sticks, i/2, 0);
displayKeyState(i&1? 20*FW : 18*FW, y, (EnumKeys)(TRM_BASE+i));
}