diff options
| author | Andreas Monzner <andreas.monzner@multimedia-labs.de> | 2007-09-17 21:32:00 +0000 |
|---|---|---|
| committer | Andreas Monzner <andreas.monzner@multimedia-labs.de> | 2007-09-17 21:32:00 +0000 |
| commit | 809f6343685cf2acc3e357d035bde67e1f651d8e (patch) | |
| tree | e9bee1e5dace7dc188cb9026ac66cde6f00ae12b /lib/python/Components | |
| parent | fde2880921e08e3546581a863e6292923c299959 (diff) | |
| download | enigma2-809f6343685cf2acc3e357d035bde67e1f651d8e.tar.gz enigma2-809f6343685cf2acc3e357d035bde67e1f651d8e.zip | |
use _ as separator instead of : for picon filenames
for better compatibility with vfat based filesystems on some cf cards or usb
sticks
Diffstat (limited to 'lib/python/Components')
| -rw-r--r-- | lib/python/Components/Renderer/Picon.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/python/Components/Renderer/Picon.py b/lib/python/Components/Renderer/Picon.py index 2dfafb99..a9c36f2b 100644 --- a/lib/python/Components/Renderer/Picon.py +++ b/lib/python/Components/Renderer/Picon.py @@ -26,7 +26,7 @@ class Picon(Renderer): # strip all after last : pos = sname.rfind(':') if pos != -1: - sname = sname[:pos].rstrip(':') + sname = sname[:pos].rstrip(':').replace(':','_') pngname = self.nameCache.get(sname, "") if pngname == "": pngname = self.findPicon(sname) |
