You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm running Raspbian Buster, and I have PySide2 installed.
importsysfromPySide6.QtWidgetsimportQApplication, QMainWindow, QPushButtonimportqdarkthemeapp=QApplication(sys.argv)
# Apply the complete dark theme to your Qt App.qdarktheme.setup_theme()
main_win=QMainWindow()
push_button=QPushButton("PyQtDarkTheme!!")
main_win.setCentralWidget(push_button)
main_win.show()
app.exec()
I executed this code line by line, but I crash with a Segmentation Fault when I get to the qdarktheme.setup_theme() line. Any ideas?
The text was updated successfully, but these errors were encountered:
I'm running Raspbian Buster, and I have PySide2 installed.
I executed this code line by line, but I crash with a Segmentation Fault when I get to the
qdarktheme.setup_theme()
line. Any ideas?The text was updated successfully, but these errors were encountered: