From 733812572ca6e661e78ba28aafad6bebe68bbfc8 Mon Sep 17 00:00:00 2001 From: Tomas Groth Date: Wed, 11 Feb 2015 22:15:46 +0000 Subject: [PATCH] Added projector and fixed spelling. --- openlp/core/common/settings.py | 4 ++++ openlp/plugins/images/imageplugin.py | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/openlp/core/common/settings.py b/openlp/core/common/settings.py index f30aeb0ee..fe7c6671e 100644 --- a/openlp/core/common/settings.py +++ b/openlp/core/common/settings.py @@ -292,6 +292,10 @@ class Settings(QtCore.QSettings): 'user interface/preview panel': True, 'user interface/preview splitter geometry': QtCore.QByteArray(), 'projector/db type': 'sqlite', + 'projector/db username': '', + 'projector/db password': '', + 'projector/db hostname': '', + 'projector/db database': '', 'projector/enable': True, 'projector/connect on start': False, 'projector/last directory import': '', diff --git a/openlp/plugins/images/imageplugin.py b/openlp/plugins/images/imageplugin.py index 3a273ec6f..743c20ad9 100644 --- a/openlp/plugins/images/imageplugin.py +++ b/openlp/plugins/images/imageplugin.py @@ -35,7 +35,7 @@ log = logging.getLogger(__name__) __default_settings__ = { 'images/db type': 'sqlite', - 'imaegs/db username': '', + 'images/db username': '', 'images/db password': '', 'images/db hostname': '', 'images/db database': '',