On 12/6/06, Mikko Saarinen <[EMAIL PROTECTED]> wrote: > I get the same error.
It works for me, so the patch is fine. > Could someone please backport this or give specific instructions for us > not-so-technical-people for how to fix this. Just a short doc, hope it's help: locate fontfx.py (use the "locate" command) Edit the file. In line 144, change, this: self.text = font.render(message, False, [255, 0, 0], self.notcolor) to that: self.text = font.render(message, 1, [255, 0, 0], self.notcolor) In line 155 base = font.render(message, 0, fontcolor, self.notcolor) base = font.render(message, 1, fontcolor, self.notcolor) as root, because they are installed files. As I remember, that's pretty much all... -- good luck tamas -- pydance failed to with "pygame.error: SDL_ttf render failed" https://launchpad.net/bugs/67427 -- ubuntu-bugs mailing list [email protected] https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
