mirror of
git://github.com/kovidgoyal/calibre.git
synced 2026-04-29 02:03:38 +02:00
Fix typos in bulk metadata edit dialog
This commit is contained in:
parent
b1f10f3059
commit
d0434f5915
1 changed files with 2 additions and 2 deletions
|
|
@ -25,7 +25,7 @@ class MetadataBulkDialog(QDialog, Ui_MetadataBulkDialog):
|
|||
def __init__(self, window, rows, db):
|
||||
QDialog.__init__(self, window)
|
||||
Ui_MetadataBulkDialog.__init__(self)
|
||||
self.setupUi(self.dialog)
|
||||
self.setupUi(self)
|
||||
self.db = db
|
||||
self.ids = [ db.id(r) for r in rows]
|
||||
self.write_series = False
|
||||
|
|
@ -44,7 +44,7 @@ def __init__(self, window, rows, db):
|
|||
|
||||
self.series.lineEdit().setText('')
|
||||
|
||||
self.dialog.exec_()
|
||||
self.exec_()
|
||||
|
||||
|
||||
def sync(self):
|
||||
|
|
|
|||
Loading…
Reference in a new issue