aboutsummaryrefslogtreecommitdiff
path: root/lib/python
diff options
context:
space:
mode:
authorAndreas Monzner <andreas.monzner@multimedia-labs.de>2006-04-05 21:34:20 +0000
committerAndreas Monzner <andreas.monzner@multimedia-labs.de>2006-04-05 21:34:20 +0000
commitc1742b2d2c072ddd0e3ceb4b2227120cd308a278 (patch)
tree9f0b4782df7d04c853c2e8d036f084dee09e1a85 /lib/python
parent4452404616677de6bf25d9b33378509fee7a4778 (diff)
downloadenigma2-c1742b2d2c072ddd0e3ceb4b2227120cd308a278.tar.gz
enigma2-c1742b2d2c072ddd0e3ceb4b2227120cd308a278.zip
fix: AttributeError: 'InfoBar' object has no attribute 'selectedEntry' when start a recording with manual entered duration
Diffstat (limited to 'lib/python')
-rw-r--r--lib/python/Screens/InfoBarGenerics.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/python/Screens/InfoBarGenerics.py b/lib/python/Screens/InfoBarGenerics.py
index 358ef44d..5c9b1b8a 100644
--- a/lib/python/Screens/InfoBarGenerics.py
+++ b/lib/python/Screens/InfoBarGenerics.py
@@ -1049,6 +1049,7 @@ class InfoBarInstantRecord:
if answer[1] == "event":
limitEvent = True
if answer[1] == "manualduration":
+ self.selectedEntry = len(self.recording)
self.session.openWithCallback(self.inputCallback, InputBox, title=_("How many minutes do you want to record?"), text="5", maxSize=False, type=Input.NUMBER)
self.startInstantRecording(limitEvent = limitEvent)