diff options
| author | Felix Domke <tmbinc@elitedvb.net> | 2006-10-02 23:55:37 +0000 |
|---|---|---|
| committer | Felix Domke <tmbinc@elitedvb.net> | 2006-10-02 23:55:37 +0000 |
| commit | 6eeefece35e4269e02fdb7abab4f79d8e7b8f98b (patch) | |
| tree | 70f4afcee82f3097e9e52a987ede8914a542b098 /lib/python/Screens/PictureInPicture.py | |
| parent | cedcadfd77539c39e928a6d5cc4fcd8d1cf48ac8 (diff) | |
| download | enigma2-6eeefece35e4269e02fdb7abab4f79d8e7b8f98b.tar.gz enigma2-6eeefece35e4269e02fdb7abab4f79d8e7b8f98b.zip | |
config rewrite. some extensions still need to be updated.
Diffstat (limited to 'lib/python/Screens/PictureInPicture.py')
| -rw-r--r-- | lib/python/Screens/PictureInPicture.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/python/Screens/PictureInPicture.py b/lib/python/Screens/PictureInPicture.py index fdb04185..ce959209 100644 --- a/lib/python/Screens/PictureInPicture.py +++ b/lib/python/Screens/PictureInPicture.py @@ -1,14 +1,14 @@ from Screens.Screen import Screen from enigma import ePoint, eSize, eServiceCenter from Components.VideoWindow import VideoWindow -from Components.config import config, configElement, configSequence, configsequencearg +from Components.config import config, ConfigPosition class PictureInPicture(Screen): def __init__(self, session): Screen.__init__(self, session) self["video"] = VideoWindow() self.currentService = None - config.av.pip = configElement("config.av.pip", configSequence, [-1, -1, -1, -1], configsequencearg.get("POSITION", (719, 567, 720, 568))) + config.av.pip = ConfigPosition(default=[-1, -1, -1, -1], limits = (719, 567, 720, 568)) self.onLayoutFinish.append(self.LayoutFinished) def LayoutFinished(self): |
