diff --git a/openlp/plugins/bibles/lib/mediaitem.py b/openlp/plugins/bibles/lib/mediaitem.py index acc7d1736..1c210c9ed 100755 --- a/openlp/plugins/bibles/lib/mediaitem.py +++ b/openlp/plugins/bibles/lib/mediaitem.py @@ -414,6 +414,8 @@ class BibleMediaItem(MediaManagerItem): if self.bible: book_data = self.get_common_books(self.bible, self.second_bible) language_selection = self.plugin.manager.get_language_selection(self.bible.name) + # Get book names + add a space to the end. Thus Psalm23 becomes Psalm 23 + # when auto complete is used and user does not need to add the space manually. books = [book.get_name(language_selection) + ' ' for book in book_data] books.sort(key=get_locale_key) set_case_insensitive_completer(books, self.search_edit) diff --git a/openlp/plugins/songs/forms/duplicatesongremovalform.py b/openlp/plugins/songs/forms/duplicatesongremovalform.py index fc3d5b279..1a9440317 100644 --- a/openlp/plugins/songs/forms/duplicatesongremovalform.py +++ b/openlp/plugins/songs/forms/duplicatesongremovalform.py @@ -83,7 +83,7 @@ class DuplicateSongRemovalForm(OpenLPWizard, RegistryProperties): self.cancel_button.clicked.connect(self.on_wizard_exit) def closeEvent(self, event): - self.on_wizard_exit() + self.on_wizard_exit() def add_custom_pages(self): """