aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorghost <andreas.monzner@multimedia-labs.de>2010-01-23 13:42:01 +0100
committerghost <andreas.monzner@multimedia-labs.de>2010-03-31 11:04:13 +0200
commitba3ca7624c0b05d5340ad5c08995a345a51384df (patch)
treefd487722a55ed202a03d428a1071d03b83e37b15 /lib
parent68276231e2e0d6e189572fec5cb1c1ff0c00a1a3 (diff)
downloadenigma2-ba3ca7624c0b05d5340ad5c08995a345a51384df.tar.gz
enigma2-ba3ca7624c0b05d5340ad5c08995a345a51384df.zip
lib/python/Screens/RecordPaths.py: fix spinners in some conditions
this fixes bug #414
Diffstat (limited to 'lib')
-rw-r--r--lib/python/Screens/RecordPaths.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/python/Screens/RecordPaths.py b/lib/python/Screens/RecordPaths.py
index c833266f..22ca9fcf 100644
--- a/lib/python/Screens/RecordPaths.py
+++ b/lib/python/Screens/RecordPaths.py
@@ -6,7 +6,7 @@ from Components.config import config, ConfigSelection, getConfigListEntry, confi
from Components.ConfigList import ConfigListScreen
from Components.ActionMap import ActionMap
from Tools.Directories import fileExists
-
+from Components.UsageConfig import preferredPath
class RecordPathsSettings(Screen,ConfigListScreen):
skin = """
@@ -115,7 +115,7 @@ class RecordPathsSettings(Screen,ConfigListScreen):
self.dirnameSelected,
MovieLocationBox,
txt,
- self.default_dirname.value
+ preferredPath(self.default_dirname.value)
)
elif currentry == self.timer_entry:
self.entrydirname = self.timer_dirname
@@ -123,7 +123,7 @@ class RecordPathsSettings(Screen,ConfigListScreen):
self.dirnameSelected,
MovieLocationBox,
_("Initial location in new timers"),
- self.timer_dirname.value
+ preferredPath(self.timer_dirname.value)
)
elif currentry == self.instantrec_entry:
self.entrydirname = self.instantrec_dirname
@@ -131,7 +131,7 @@ class RecordPathsSettings(Screen,ConfigListScreen):
self.dirnameSelected,
MovieLocationBox,
_("Location for instant recordings"),
- self.instantrec_dirname.value
+ preferredPath(self.instantrec_dirname.value)
)
elif currentry == self.timeshift_entry:
self.entrydirname = self.timeshift_dirname