mirror of
git://github.com/kovidgoyal/calibre.git
synced 2026-05-09 11:14:02 +02:00
Fix #746846 (Calibre dos nut use system color for font)
This commit is contained in:
parent
cdd8c44396
commit
b3c1a28361
1 changed files with 1 additions and 1 deletions
|
|
@ -109,7 +109,7 @@ def initialize(self, opt_name, colorize=False, help_text=_('Search')):
|
|||
def normalize_state(self):
|
||||
self.setToolTip(self.tool_tip_text)
|
||||
self.line_edit.setStyleSheet(
|
||||
'QLineEdit{color:black;background-color:%s;}' % self.normal_background)
|
||||
'QLineEdit{color:inherit;background-color:%s;}' % self.normal_background)
|
||||
|
||||
def text(self):
|
||||
return self.currentText()
|
||||
|
|
|
|||
Loading…
Reference in a new issue