mirror of
git://github.com/kovidgoyal/calibre.git
synced 2026-05-09 02:53:38 +02:00
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:
parent
834f08747a
commit
4e776ca18b
1 changed files with 1 additions and 1 deletions
|
|
@ -1077,7 +1077,7 @@ def on_palette_change(self):
|
|||
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()
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue