Skip to content

Commit

Permalink
Update epsilon for FreeType 2.10 with eg. Unicode width 16 (#3931)
Browse files Browse the repository at this point in the history
Update epsilon for FreeType 2.10 with eg. Unicode width 16
  • Loading branch information
hugovk committed Jul 1, 2019
2 parents c5578b7 + 46535df commit 9300ced
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Tests/test_imagefont.py
Expand Up @@ -53,7 +53,8 @@ class TestImageFont(PillowTestCase):
# (and, other things, but first things first)
METRICS = {
(">=2.3", "<2.4"): {"multiline": 30, "textsize": 12, "getters": (13, 16)},
(">=2.7",): {"multiline": 6.2, "textsize": 2.5, "getters": (12, 16)},
(">=2.7", "<2.10"): {"multiline": 6.2, "textsize": 2.5, "getters": (12, 16)},
(">=2.10",): {"multiline": 14.8, "textsize": 2.5, "getters": (12, 16)},
"Default": {"multiline": 0.5, "textsize": 0.5, "getters": (12, 16)},
}

Expand Down

0 comments on commit 9300ced

Please sign in to comment.