Dom
Dom

Reputation: 57

Qt designer how to set style?

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

Answers (1)

set the style to the app

.... 
app = QApplication([])
app.setStyle('Fusion')

Upvotes: 5

Related Questions