Reputation: 57
I made an application in Qt designer and I can also preview it in "fusion" style.
How can I make it always look like in the "fusion" style? I mean like set it as the standard design. (I'm using Python)
Upvotes: 5
Views: 6075
Reputation: 48307
set the style to the app
....
app = QApplication([])
app.setStyle('Fusion')
Upvotes: 5