mirror of
https://github.com/opentx/opentx.git
synced 2025-07-20 06:45:10 +03:00
Trims displayed on main view - related to #1419
This commit is contained in:
parent
7302d1b9af
commit
22c2846992
7 changed files with 64 additions and 13 deletions
|
@ -119,7 +119,10 @@ void lcdPutPattern(coord_t x, coord_t y, const uint8_t * pattern, uint8_t width,
|
|||
}
|
||||
if (inv) plot = !plot;
|
||||
if (!blink) {
|
||||
lcd_plot(x, y+j, plot ? FORCE : ERASE);
|
||||
if (flags & VERTICAL)
|
||||
lcd_plot(y+j, LCD_H-x, plot ? FORCE : ERASE);
|
||||
else
|
||||
lcd_plot(x, y+j, plot ? FORCE : ERASE);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue