From 4e776ca18b9f968d9491c2ab798e5a2f680c1342 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Sun, 29 Dec 2019 10:09:52 +0530 Subject: [PATCH] macOS: Fix regression in previous release that caused link color to be light blue even when not using dark color themes --- src/calibre/gui2/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/calibre/gui2/__init__.py b/src/calibre/gui2/__init__.py index 2785fd730a..fdc6779810 100644 --- a/src/calibre/gui2/__init__.py +++ b/src/calibre/gui2/__init__.py @@ -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()