google-code-export / simple-pygame-gui

Automatically exported from code.google.com/p/simple-pygame-gui
1 stars 1 forks source link

ListBox does not obey antialias setting #10

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
defaultListBoxStyle['antialias'] has no effect.  This is because ListBox
calls self.style['font'].render() with hardcoded True value.  Simply change
this from True to self.style['antialias'] and the problem is fixed.

Original issue reported on code.google.com by mackst...@gmail.com on 2 Oct 2008 at 9:40