1
0
Fork 0
mirror of https://github.com/opentx/opentx.git synced 2025-07-26 09:45:21 +03:00

Tab function in the strings \037 will help to align columns for different font types

This commit is contained in:
mhotar 2013-12-15 18:26:02 +01:00
parent b6f8fb689f
commit 2cb5586fd6

View file

@ -358,6 +358,10 @@ void lcd_putsnAtt(xcoord_t x, uint8_t y, const pm_char * s, uint8_t len, LcdFlag
lcd_putcAtt(x, y, c, mode); lcd_putcAtt(x, y, c, mode);
x += lcdLastFW; x += lcdLastFW;
} }
else if (c == 0x1F) {
x++;
x |= 0x0F;
}
else { else {
x += (c*FW/2); x += (c*FW/2);
} }