mirror of
git://github.com/kovidgoyal/calibre.git
synced 2026-05-08 17:04:39 +02:00
Edit metadata dialog: Fix the author sort field not being marked red initially when the author sort does not match the author due to a Qt 5 behavior change. Fixes #1367943 [Author sort fails sometimes in tag browser](https://bugs.launchpad.net/calibre/+bug/1367943)
This commit is contained in:
parent
3bcac0109a
commit
a88b574c13
1 changed files with 1 additions and 1 deletions
|
|
@ -339,7 +339,7 @@ def __init__(self, parent, authors_edit, autogen_button, db,
|
|||
'No action is required if this is what you want.'))
|
||||
self.tooltips = (ok_tooltip, bad_tooltip)
|
||||
|
||||
self.authors_edit.editTextChanged.connect(self.update_state_and_val)
|
||||
self.authors_edit.editTextChanged.connect(self.update_state_and_val, type=Qt.QueuedConnection)
|
||||
self.textChanged.connect(self.update_state)
|
||||
|
||||
self.autogen_button = autogen_button
|
||||
|
|
|
|||
Loading…
Reference in a new issue