Fetch book summary alongwith the rest of the metadata

This commit is contained in:
Kovid Goyal 2008-03-10 17:39:08 +00:00
parent 27a2b7e61d
commit 6b9f555cbb

View File

@ -289,7 +289,7 @@ class MetadataSingleDialog(QDialog, Ui_MetadataSingleDialog):
self.isbn.setText(book.isbn) self.isbn.setText(book.isbn)
summ = book.comments summ = book.comments
if summ: if summ:
prefix = qstring_to_unicode(self.comments.text()) prefix = qstring_to_unicode(self.comments.toPlainText())
if prefix: if prefix:
prefix += '\n' prefix += '\n'
self.comments.setText(prefix + summ) self.comments.setText(prefix + summ)