Fix #778795 (author(s) dropdown list shows unconverted list)

This commit is contained in:
Kovid Goyal 2011-05-06 16:48:55 -06:00
parent 1c176423d9
commit b7468994fc

View File

@ -208,7 +208,7 @@ class AuthorsEdit(MultiCompleteComboBox):
for i in all_authors:
id, name = i
name = name.strip().replace('|', ',')
self.addItem(authors_to_string(name))
self.addItem(name)
self.set_separator('&')
self.set_space_before_sep(True)