4. We could rapidly narrow down the list of possibilities if a couple
people would take 5 minutes (if that) to run the test I gave and see
who's affected by it. I have confirmation from my end that it's
appeared on at least three separate Windows systems, so other *NIX
results would be particularly useful, and not, I would think, terribly
hard to come by here.
Attachment:
acknowtt.ttf
Description: application/font-ttf
#!/usr/bin/env python
import pygame
pygame.font.init()
f = pygame.font.Font("acknowtt.ttf", 21)
print f.size("6")
print f.size("7")
print
print f.render("66", True, (0,0,0,255))
print f.render("67", True, (0,0,0,255))
print
print f.metrics("66")
print f.metrics("67")