From 3ae8caceb0271edb37c03846ac8c83ddc30a8590 Mon Sep 17 00:00:00 2001 From: Olli Suutari Date: Sun, 4 Jun 2017 14:19:19 +0300 Subject: [PATCH] Added "last search type" to obsolete settings list. --- openlp/core/common/settings.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/openlp/core/common/settings.py b/openlp/core/common/settings.py index d931b06df..36f566147 100644 --- a/openlp/core/common/settings.py +++ b/openlp/core/common/settings.py @@ -219,7 +219,11 @@ class Settings(QtCore.QSettings): ('shortcuts/offlineHelpItem', 'shortcuts/userManualItem', []), # Online and Offline help were combined in 2.6. ('shortcuts/onlineHelpItem', 'shortcuts/userManualItem', []), # Online and Offline help were combined in 2.6. ('bibles/advanced bible', '', []), # Common bible search widgets combined in 2.6 - ('bibles/quick bible', 'bibles/primary bible', []) # Common bible search widgets combined in 2.6 + ('bibles/quick bible', 'bibles/primary bible', []), # Common bible search widgets combined in 2.6 + # Last search type was renamed to last used search type in 2.6 since Bible search value type changed in 2.6. + ('songs/last search type', 'songs/last used search type', []), + ('bibles/last search type', 'bibles/last used search type', []), + ('custom/last search type', 'custom/last used search type', []) ] @staticmethod