From 6ecc7dc132071039edf045ad55b3fb2773aed784 Mon Sep 17 00:00:00 2001 From: Stefan Pluecken Date: Sat, 8 Apr 2006 09:42:28 +0000 Subject: add support for picture in picture into the infobar (by pressing the blue button) --- lib/python/Screens/PictureInPicture.py | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 lib/python/Screens/PictureInPicture.py (limited to 'lib/python/Screens/PictureInPicture.py') 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 -- cgit v1.2.3