diff options
| author | Felix Domke <tmbinc@elitedvb.net> | 2009-01-27 15:56:25 +0100 |
|---|---|---|
| committer | Felix Domke <tmbinc@elitedvb.net> | 2009-01-27 15:56:25 +0100 |
| commit | fc102394e60824f5c07da710d36ba28eaf160c72 (patch) | |
| tree | 81c60e29d4c93563c2cdc9b51335accc664c4b5f /lib | |
| parent | a4fd5bddb0f8c1b05b963cb8af9692f6c89f3dab (diff) | |
| download | enigma2-fc102394e60824f5c07da710d36ba28eaf160c72.tar.gz enigma2-fc102394e60824f5c07da710d36ba28eaf160c72.zip | |
when length is not available, just don't show anything
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/python/Components/MovieList.py | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/lib/python/Components/MovieList.py b/lib/python/Components/MovieList.py index 8568f3d6..5c98e4be 100644 --- a/lib/python/Components/MovieList.py +++ b/lib/python/Components/MovieList.py @@ -93,10 +93,7 @@ class MovieList(GUIComponent): if len > 0: len = "%d:%02d" % (len / 60, len % 60) else: - if config.usage.load_length_of_movies_in_moviellist.value: - len = "?:??" - else: - len = "X:XX" + len = "" res = [ None ] |
