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

Bug in the little square of the throttle trim

This commit is contained in:
bsongis 2012-01-15 18:13:20 +00:00
parent 5d8a717131
commit 262458e1d0

View file

@ -257,7 +257,8 @@ void menuMainView(uint8_t event)
if (vert[i]) {
ym = 31;
lcd_vline(xm, ym-TL, TL*2);
if(((g_eeGeneral.stickMode&1) != (i&1)) || !(g_model.thrTrim)){
if (i!=2 || !g_model.thrTrim) {
// TODO square?
lcd_vline(xm-1, ym-1, 3);
lcd_vline(xm+1, ym-1, 3);
}