Pyqt: Resizing row height in ListWidget

So I’m using pyqt and I’m trying to populate my List with items that contain an icon and some text beside it. My icons gets shrunk down when inserted into the List and my font size is super small. How do I increase size of everything (i.e size of icon and text)?

Looks like you got your answer.

This may also be of potential help

http://nullege.com/codes/search/PyQt4.QtGui.QListWidgetItem.setSizeHint

setSizeHint just made each row taller without making the icon or text bigger. SetIconSize size did do the trick though. Thanks!