aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Screens/PictureInPicture.py
diff options
context:
space:
mode:
Diffstat (limited to 'lib/python/Screens/PictureInPicture.py')
-rw-r--r--lib/python/Screens/PictureInPicture.py9
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