diff options
| author | Felix Domke <tmbinc@elitedvb.net> | 2008-02-11 14:51:43 +0000 |
|---|---|---|
| committer | Felix Domke <tmbinc@elitedvb.net> | 2008-02-11 14:51:43 +0000 |
| commit | 6874d42b68d15fa07542bc536535539997d9ba68 (patch) | |
| tree | ceb89819d30e9ab91d433a9fefe6b953a4a558cd /lib/python | |
| parent | c1e207b8fc71d8d909559887c0b8b9351ce9f86c (diff) | |
| download | enigma2-6874d42b68d15fa07542bc536535539997d9ba68.tar.gz enigma2-6874d42b68d15fa07542bc536535539997d9ba68.zip | |
config entries must be defined globally
Diffstat (limited to 'lib/python')
| -rw-r--r-- | lib/python/Plugins/SystemPlugins/Videomode/VideoWizard.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/python/Plugins/SystemPlugins/Videomode/VideoWizard.py b/lib/python/Plugins/SystemPlugins/Videomode/VideoWizard.py index 378bf207..5524dfce 100644 --- a/lib/python/Plugins/SystemPlugins/Videomode/VideoWizard.py +++ b/lib/python/Plugins/SystemPlugins/Videomode/VideoWizard.py @@ -5,6 +5,8 @@ from VideoHardware import video_hw from Components.Pixmap import Pixmap, MovingPixmap from Components.config import config, ConfigBoolean, configfile +config.misc.showtestcard = ConfigBoolean(default = False) + class VideoWizard(Wizard): skin = """ <screen position="0,0" size="720,576" title="Welcome..." flags="wfNoBorder" > @@ -36,7 +38,6 @@ class VideoWizard(Wizard): self.port = None self.mode = None - config.misc.showtestcard = ConfigBoolean(default = False) def createSummary(self): print "++++++++++++***++**** VideoWizard-createSummary" @@ -121,4 +122,4 @@ class VideoWizard(Wizard): if selection == "yes": config.misc.showtestcard.value = True else: - config.misc.showtestcard.value = False
\ No newline at end of file + config.misc.showtestcard.value = False |
