mirror of
git://github.com/kovidgoyal/calibre.git
synced 2026-05-09 09:03:07 +02:00
Fix #3088 (Update metada from file)
This commit is contained in:
parent
106798544e
commit
2f5325e387
1 changed files with 3 additions and 0 deletions
|
|
@ -207,6 +207,9 @@ def set_metadata_from_format(self):
|
|||
self.series.setEditText(mi.series)
|
||||
if mi.series_index is not None:
|
||||
self.series_index.setValue(float(mi.series_index))
|
||||
if mi.comments and mi.comments.strip():
|
||||
self.comments.setText(mi.comments)
|
||||
|
||||
|
||||
def set_cover(self):
|
||||
mi, ext = self.get_selected_format_metadata()
|
||||
|
|
|
|||
Loading…
Reference in a new issue