I want to create a button with text and icon, for example Next =>, and I'm using QPushButton.
I tried to do the following:
btn2 = QtGui.QPushButton('Next',self)
btn2.setIcon(QIcon(QPixmap("next.png")))
but I got:
I want the arrow (icon) to appear on the right side of the text ("Next"), or below. Please help.