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:
parent
5d8a717131
commit
262458e1d0
1 changed files with 2 additions and 1 deletions
|
@ -257,7 +257,8 @@ void menuMainView(uint8_t event)
|
||||||
if (vert[i]) {
|
if (vert[i]) {
|
||||||
ym = 31;
|
ym = 31;
|
||||||
lcd_vline(xm, ym-TL, TL*2);
|
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);
|
||||||
lcd_vline(xm+1, ym-1, 3);
|
lcd_vline(xm+1, ym-1, 3);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue