macOS: Fix regression in previous release that caused link color to be light blue even when not using dark color themes

This commit is contained in:
Kovid Goyal 2019-12-29 10:09:52 +05:30
parent 834f08747a
commit 4e776ca18b
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C

View File

@ -1077,7 +1077,7 @@ class Application(QApplication):
return
self.is_dark_theme = is_dark_theme()
self.setProperty('is_dark_theme', self.is_dark_theme)
if isosx:
if isosx and self.is_dark_theme:
self.fix_dark_theme_colors()
self.palette_changed.emit()