We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 08a876f commit 886385dCopy full SHA for 886385d
tidal_dl_ng/gui.py
@@ -615,7 +615,10 @@ def gui_activate(tidal: Tidal | None = None):
615
# Set dark theme and create QT app.
616
qdarktheme.enable_hi_dpi()
617
app = QtWidgets.QApplication(sys.argv)
618
- qdarktheme.setup_theme()
+ # Fix for Windows: Tooltips have bright font color
619
+ # https://github.com/5yutan5/PyQtDarkTheme/issues/239
620
+ # qdarktheme.setup_theme()
621
+ qdarktheme.setup_theme(additional_qss="QToolTip { border: 0px; }")
622
623
# Create icon object and apply it to app window.
624
pixmap: QtGui.QPixmap = QtGui.QPixmap("tidal_dl_ng/ui/icon.png")
0 commit comments