Writing in Python 2.7 using pyQt 4.8.5: What is the default background colour of a pyQt QPushButton widget? I am able to set the colour green but not return it to the default colour. A snap shot of what I mean:
The function responsbile for this:
def StartTransmit(self):
self.ui.Transmit.setStyleSheet("background-color: green")**
# self.ui.Transmit.setStyleSheet("background-color: DEFAULT <later on>")
self.number = random.randint(1,10)
self.ui.lcd.display(self.number)
self.timer.start(1000)