mirror of
git://github.com/kovidgoyal/calibre.git
synced 2026-01-31 03:25:07 +01:00
Fix for bug #5725 -- changing title. The code tried to set title_sorter, which is a dynamic property. There is no reason to do this, as the property returns the title.
This commit is contained in:
parent
6717e421c8
commit
ebec935f3e
1 changed files with 0 additions and 1 deletions
|
|
@ -1089,7 +1089,6 @@ def setData(self, index, value, role):
|
|||
idx = self.map[row]
|
||||
if cname == 'title' :
|
||||
self.db[idx].title = val
|
||||
self.db[idx].title_sorter = val
|
||||
elif cname == 'authors':
|
||||
self.db[idx].authors = string_to_authors(val)
|
||||
elif cname == 'collections':
|
||||
|
|
|
|||
Loading…
Reference in a new issue