Skip to content

Commit 886385d

Browse files
committed
🛠️ Fixed bright tooltip font color if using Windows.
1 parent 08a876f commit 886385d

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

tidal_dl_ng/gui.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -615,7 +615,10 @@ def gui_activate(tidal: Tidal | None = None):
615615
# Set dark theme and create QT app.
616616
qdarktheme.enable_hi_dpi()
617617
app = QtWidgets.QApplication(sys.argv)
618-
qdarktheme.setup_theme()
618+
# 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; }")
619622

620623
# Create icon object and apply it to app window.
621624
pixmap: QtGui.QPixmap = QtGui.QPixmap("tidal_dl_ng/ui/icon.png")

0 commit comments

Comments
 (0)