forked from openlp/openlp
Fixes for the bible plugin. Fix placement of alternative_book_names.sqlite for portable installs. Fix gui elements not updating when only one bible is available.
This commit is contained in:
parent
9f41ce1159
commit
282a845a10
@ -761,7 +761,7 @@ class AlternativeBookNamesDB(Manager):
|
||||
If necessary loads up the database and creates the tables if the database doesn't exist.
|
||||
"""
|
||||
if AlternativeBookNamesDB.cursor is None:
|
||||
file_path = AppLocation.get_directory(AppLocation.DataDir) / 'bibles' / 'alternative_book_names.sqlite'
|
||||
file_path = AppLocation.get_section_data_path('bibles') / 'alternative_book_names.sqlite'
|
||||
exists = file_path.exists()
|
||||
AlternativeBookNamesDB.conn = sqlite3.connect(str(file_path))
|
||||
if not exists:
|
||||
|
@ -344,6 +344,8 @@ class BibleMediaItem(MediaManagerItem):
|
||||
# set the default value
|
||||
bible = self.settings.value('bibles/primary bible')
|
||||
find_and_set_in_combo_box(self.version_combo_box, bible)
|
||||
# make sure the selected bible ripples down to other gui elements
|
||||
self.on_version_combo_box_index_changed()
|
||||
|
||||
def reload_bibles(self):
|
||||
"""
|
||||
|
@ -328,7 +328,8 @@ def test_populate_bible_combo_boxes(media_item):
|
||||
media_item.plugin.manager.get_bibles.return_value = \
|
||||
{'Bible 2': bible_2, 'Bible 1': bible_1, 'Bible 3': bible_3}
|
||||
with patch('openlp.plugins.bibles.lib.mediaitem.get_locale_key', side_effect=lambda x: x), \
|
||||
patch('openlp.plugins.bibles.lib.mediaitem.find_and_set_in_combo_box'):
|
||||
patch('openlp.plugins.bibles.lib.mediaitem.find_and_set_in_combo_box'), \
|
||||
patch.object(media_item, 'on_version_combo_box_index_changed'):
|
||||
|
||||
# WHEN: Calling populate_bible_combo_boxes
|
||||
media_item.populate_bible_combo_boxes()
|
||||
|
Loading…
Reference in New Issue
Block a user