From f346ebebe0354d01421e2a0a2f685580de63df89 Mon Sep 17 00:00:00 2001 From: Andreas Preikschat Date: Mon, 31 Oct 2011 09:53:18 +0100 Subject: [PATCH] fixed import and added note --- openlp/core/ui/slidecontroller.py | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/openlp/core/ui/slidecontroller.py b/openlp/core/ui/slidecontroller.py index 03ec3c16b..d24cc2784 100644 --- a/openlp/core/ui/slidecontroller.py +++ b/openlp/core/ui/slidecontroller.py @@ -459,9 +459,15 @@ class SlideController(QtGui.QWidget): """ Called, when a shortcut has been activated to jump to a chorus, verse, etc. + + **Note**: This implementation is based on shortcuts. But it rather works + like "key sequenzes". You have to press one key after the other and + **not** at the same time. + For example to jump to "V3" you have to press "V" and afterwards but + within a timeframe of 350ms you have to press "3". """ try: - from openlp.plugins.songs.lib import VerseTypae + from openlp.plugins.songs.lib import VerseType SONGS_PLUGIN_AVAILABLE = True except ImportError: SONGS_PLUGIN_AVAILABLE = False