use LocationBox skin for MovieLocationBox
[enigma2.git] / lib / python / Screens / LocationBox.py
index 13315ffc45aab5a0aac3227121cb3af9aa02a188..7cd6cbf9d6a7d0e68873bddd5383a3873491ce3d 100644 (file)
@@ -498,6 +498,8 @@ class LocationBox(Screen, NumericalTextInput, HelpableScreen):
                return str(type(self)) + "(" + self.text + ")"
 
 class MovieLocationBox(LocationBox):
+       skinName = "LocationBox"
+
        def __init__(self, session, text, dir, minFree = None):
                inhibitDirs = ["/bin", "/boot", "/dev", "/etc", "/lib", "/proc", "/sbin", "/sys", "/usr", "/var"]
                LocationBox.__init__(self, session, text = text, currDir = dir, bookmarks = config.movielist.videodirs, autoAdd = True, editDir = True, inhibitDirs = inhibitDirs, minFree = minFree)