diff options
| author | Stefan Pluecken <stefan.pluecken@multimedia-labs.de> | 2006-04-08 09:42:28 +0000 |
|---|---|---|
| committer | Stefan Pluecken <stefan.pluecken@multimedia-labs.de> | 2006-04-08 09:42:28 +0000 |
| commit | 6ecc7dc132071039edf045ad55b3fb2773aed784 (patch) | |
| tree | 2726b8a2861262b96085607c79f0ba2c181e103a /lib/python/Screens/PictureInPicture.py | |
| parent | 9cb4795246ef286ea7eed349639b84d723147b2c (diff) | |
| download | enigma2-6ecc7dc132071039edf045ad55b3fb2773aed784.tar.gz enigma2-6ecc7dc132071039edf045ad55b3fb2773aed784.zip | |
add support for picture in picture into the infobar (by pressing the blue button)
Diffstat (limited to 'lib/python/Screens/PictureInPicture.py')
| -rw-r--r-- | lib/python/Screens/PictureInPicture.py | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/lib/python/Screens/PictureInPicture.py b/lib/python/Screens/PictureInPicture.py new file mode 100644 index 00000000..7b94ce4b --- /dev/null +++ b/lib/python/Screens/PictureInPicture.py @@ -0,0 +1,9 @@ +from Screens.Screen import Screen + +from Components.VideoWindow import VideoWindow + +class PictureInPicture(Screen): + def __init__(self, session): + Screen.__init__(self, session) + + self["video"] = VideoWindow()
\ No newline at end of file |
