Converter/ValueToPixmap.py: don't use cache with "Path" argument. refs #750
[enigma2.git] / lib / python / Components / Converter / ValueToPixmap.py
index ed9f770029cb2821d2c64154688081b11d53f180..0acd263908e4aad32187333a5b03656859274c84 100644 (file)
@@ -24,7 +24,7 @@ class ValueToPixmap(Converter, object):
                        if val in (None, ""):
                                return None
                if self.type == self.PATH:
-                       return LoadPixmap(cached=True, path=val)
+                       return LoadPixmap(val)
                if self.type == self.LANGUAGE_CODE:
                        png = LoadPixmap(cached=True, path=resolveFilename(SCOPE_CURRENT_SKIN, "countries/" + val[3:].lower() + ".png"))
                        if png == None: