diff options
| author | Felix Domke <tmbinc@elitedvb.net> | 2008-06-11 00:04:10 +0000 |
|---|---|---|
| committer | Felix Domke <tmbinc@elitedvb.net> | 2008-06-11 00:04:10 +0000 |
| commit | f6d690f4f6d13acdaf4bae627c8cff6a1d93a198 (patch) | |
| tree | e5406c6297243015adc61d4f98ff2aa7abc74ad3 /lib/python/Screens/TaskView.py | |
| parent | 712d23e94f13360d01c8f06ba63321aad5c76e67 (diff) | |
| download | enigma2-f6d690f4f6d13acdaf4bae627c8cff6a1d93a198.tar.gz enigma2-f6d690f4f6d13acdaf4bae627c8cff6a1d93a198.zip | |
Notification support in TaskView
Diffstat (limited to 'lib/python/Screens/TaskView.py')
| -rw-r--r-- | lib/python/Screens/TaskView.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/python/Screens/TaskView.py b/lib/python/Screens/TaskView.py index 299c0fa2..fce0ac37 100644 --- a/lib/python/Screens/TaskView.py +++ b/lib/python/Screens/TaskView.py @@ -1,12 +1,14 @@ from Screen import Screen +from InfoBarGenerics import InfoBarNotifications -class JobView(Screen): +class JobView(InfoBarNotifications, Screen): def __init__(self, session, job, cancelable = True, close_on_finish = False): from Components.Sources.StaticText import StaticText from Components.Sources.Progress import Progress from Components.Sources.Boolean import Boolean from Components.ActionMap import ActionMap Screen.__init__(self, session) + InfoBarNotifications.__init__(self) self.job = job self.close_on_finish = close_on_finish self.cancelable = cancelable |
