forked from openlp/openlp
reverted change
This commit is contained in:
parent
6082785b3e
commit
606287bda1
@ -395,7 +395,7 @@ class BibleMediaItem(MediaManagerItem):
|
|||||||
bible = unicode(self.quickVersionComboBox.currentText())
|
bible = unicode(self.quickVersionComboBox.currentText())
|
||||||
if bible:
|
if bible:
|
||||||
book_data = bibles[bible].get_books()
|
book_data = bibles[bible].get_books()
|
||||||
books = map(lambda x: x.name + u' ', book_data)
|
books = [book.name + u' ' for book in book_data]
|
||||||
books.sort()
|
books.sort()
|
||||||
add_widget_completer(books, self.quickSearchEdit)
|
add_widget_completer(books, self.quickSearchEdit)
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user