01-13-2012, 09:33 PM
the stretch_blt is stand alone, but you didn't apply it to the window content
Change the
to
Change the
Code:
bitmap.stretch_blt(rect, bitmap,icon)
self.contents.draw_text(x + 20, y, width-80, 16, item.name)
to
Code:
self.contents.stretch_blt(rect, bitmap,icon)
self.contents.draw_text(x + 20, y, width-80, 16, item.name)