From 4186211e3fde905335b7fe2fcd3325ba68780ea9 Mon Sep 17 00:00:00 2001 From: Nick Zatkovich Date: Mon, 31 Jul 2017 00:29:06 -0700 Subject: [PATCH] config.py: fix kerning table duplicate entries in the kerning table caused non-deterministic text graphics to be generated --- graphics/text/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/graphics/text/config.py b/graphics/text/config.py index 9fe0b973..7f7bbd30 100644 --- a/graphics/text/config.py +++ b/graphics/text/config.py @@ -28,7 +28,7 @@ FONT_KERNING_RULES = { # Left character fits under right character: r'L[TY]': -4, r'L[014COQV]': -3, - r'L[O09]': -2, + r'L[9]': -2, r'[0O][4TY]': -2, r'[0O][1]': -1, r'Q[1T]': -2,