diff options
| author | Andreas Monzner <andreas.monzner@multimedia-labs.de> | 2007-07-31 10:16:08 +0000 |
|---|---|---|
| committer | Andreas Monzner <andreas.monzner@multimedia-labs.de> | 2007-07-31 10:16:08 +0000 |
| commit | 6db060dce242cd1990ae82f518ffa0beaee74d06 (patch) | |
| tree | 987f2aca1c8fa8a1e0ab706d2f4997046fb17981 /lib/python/Screens/InfoBarGenerics.py | |
| parent | 866bf4c43f79a42337ac654dfa35df7b95c8e2d5 (diff) | |
| download | enigma2-6db060dce242cd1990ae82f518ffa0beaee74d06.tar.gz enigma2-6db060dce242cd1990ae82f518ffa0beaee74d06.zip | |
take care of scrollbar size when build movielist and timerlist entries
i dont understand how it could work ever
Diffstat (limited to 'lib/python/Screens/InfoBarGenerics.py')
| -rw-r--r-- | lib/python/Screens/InfoBarGenerics.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/python/Screens/InfoBarGenerics.py b/lib/python/Screens/InfoBarGenerics.py index 0c0916f6..85b1d80f 100644 --- a/lib/python/Screens/InfoBarGenerics.py +++ b/lib/python/Screens/InfoBarGenerics.py @@ -14,7 +14,6 @@ from Components.Sources.EventInfo import EventInfo from Components.Sources.FrontendStatus import FrontendStatus from Components.Sources.Boolean import Boolean from Components.Sources.Clock import Clock -from Components.TimerList import TimerEntryComponent from Components.config import config, ConfigBoolean, ConfigClock from EpgSelection import EPGSelection from Plugins.Plugin import PluginDescriptor @@ -1359,7 +1358,7 @@ class InfoBarInstantRecord: if not x in self.session.nav.RecordTimer.timer_list: self.recording.remove(x) elif x.dontSave and x.isRunning(): - list.append(TimerEntryComponent(x, False)) + list.append((x, False)) if answer[1] == "changeduration": if len(self.recording) == 1: |
