I have a problem with QPushbutton under Linux Under Windows 10, I've made a couple of buttons like this one:
self.playbutton = QPushButton("", self)
self.playbutton.setGeometry(1, 2, 35, 27)
self.playbutton.setStyleSheet("QPushButton {background-color : rgba(0, 0, 0, 0);"
"background-image : url(images/play.png); border: 0px}"
"QPushButton::hover {background-image : url(images/play_over.png);}"
)
self.playbutton.clicked.connect(self.play)
The buttons appear correctly under linux but the button which have the focus show a grey border like this:
Can someone help me with this