This commit is contained in:
Kovid Goyal 2022-07-16 20:02:55 +05:30
commit 7ce022f5e1
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C

View File

@ -57,7 +57,9 @@ class EditColumnDelegate(QItemDelegate):
editor.update_items_cache(self.completion_data) editor.update_items_cache(self.completion_data)
return editor return editor
from calibre.gui2.widgets import EnLineEdit from calibre.gui2.widgets import EnLineEdit
return EnLineEdit(parent) editor = EnLineEdit(parent)
editor.setClearButtonEnabled(True)
return editor
class EditAuthorsDialog(QDialog, Ui_EditAuthorsDialog): class EditAuthorsDialog(QDialog, Ui_EditAuthorsDialog):