4

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)

ΦXocę 웃 Пepeúpa ツ
  • 47,427
  • 17
  • 69
  • 97
Dom
  • 47
  • 2
  • 7

1 Answers1

2

set the style to the app

.... 
app = QApplication([])
app.setStyle('Fusion')
ΦXocę 웃 Пepeúpa ツ
  • 47,427
  • 17
  • 69
  • 97
  • 1
    Thank you so much! All I found were 20 minute videos which don't even work for me! Now this is very simple and working. – Dom Jun 02 '20 at 12:50