billiob pushed a commit to branch master.

http://git.enlightenment.org/apps/terminology.git/commit/?id=bc6ed7ac92a525b298f4e6ec443664091070c13c

commit bc6ed7ac92a525b298f4e6ec443664091070c13c
Author: Boris Faure <bill...@gmail.com>
Date:   Tue Mar 13 11:23:03 2018 +0100

    termptygfx: fix stupid bug when printing encircled numbers
---
 src/bin/termptygfx.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/bin/termptygfx.c b/src/bin/termptygfx.c
index afb7115..055a47c 100644
--- a/src/bin/termptygfx.c
+++ b/src/bin/termptygfx.c
@@ -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;

-- 


Reply via email to