aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Screens/PictureInPicture.py
blob: 391c042fb2bc63f7eab4e82afcead475fcf9b608 (plain)
1
2
3
4
5
6
7
8
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()