diff options
Diffstat (limited to 'lib/python/Screens/SubtitleDisplay.py')
| -rw-r--r-- | lib/python/Screens/SubtitleDisplay.py | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/lib/python/Screens/SubtitleDisplay.py b/lib/python/Screens/SubtitleDisplay.py new file mode 100644 index 00000000..80d3bd26 --- /dev/null +++ b/lib/python/Screens/SubtitleDisplay.py @@ -0,0 +1,7 @@ +from Screens.Screen import Screen + +class SubtitleDisplay(Screen): + def __init__(self, session): + Screen.__init__(self, session) + + # not really much to do... |
