mirror of
https://github.com/opentx/opentx.git
synced 2025-07-24 00:35:18 +03:00
TAB "\t" added to strings
This commit is contained in:
parent
bb75538070
commit
2d62054e9a
12 changed files with 89 additions and 70 deletions
|
@ -367,6 +367,12 @@ void lcd_putsnAtt(xcoord_t x, uint8_t y, const pm_char * s, uint8_t len, LcdFlag
|
|||
#endif
|
||||
if (y >= LCD_H) break;
|
||||
}
|
||||
#if defined(CPUARM)
|
||||
else if (c == 0x1D) { //TAB
|
||||
x |= 0x3F;
|
||||
x += 1;
|
||||
}
|
||||
#endif
|
||||
else {
|
||||
x += (c*FW/2); //EXTENDED SPACE
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue