termptygfx: fix stupid bug when printing encircled numbers

This commit is contained in:
Boris Faure 2018-03-13 11:23:03 +01:00
parent 9e0243d9f1
commit bc6ed7ac92
1 changed files with 1 additions and 1 deletions

View File

@ -72,7 +72,7 @@ _termpty_charset_trans(const Termpty *ty, Eina_Unicode g)
}
else if (g >= '1' && g <= '9')
{
g += 0x2460 - '0';
g += 0x2460 - '1';
}
else if (g == '0')
g = 0x24ea;