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
qdarktheme Import Issue:
The most immediate issue is that qdarktheme might not be available, and you mentioned earlier that there was trouble installing it. Since qdarkstyle was successfully installed, you should replace the qdarktheme usage with qdarkstyle.
Update the section where qdarktheme is used:
Original:
import qdarktheme
Replace with:
import qdarkstyle
Also, replace the theme setup line:
Original:
qdarktheme.setup_theme()
Replace with:
app.setStyleSheet(qdarkstyle.load_stylesheet())
The text was updated successfully, but these errors were encountered:
qdarktheme Import Issue:
The most immediate issue is that qdarktheme might not be available, and you mentioned earlier that there was trouble installing it. Since qdarkstyle was successfully installed, you should replace the qdarktheme usage with qdarkstyle.
Update the section where qdarktheme is used:
Original:
import qdarktheme
Replace with:
import qdarkstyle
Also, replace the theme setup line:
Original:
qdarktheme.setup_theme()
Replace with:
app.setStyleSheet(qdarkstyle.load_stylesheet())
The text was updated successfully, but these errors were encountered: