diff options
| author | Stefan Pluecken <stefan.pluecken@multimedia-labs.de> | 2007-06-18 22:17:42 +0000 |
|---|---|---|
| committer | Stefan Pluecken <stefan.pluecken@multimedia-labs.de> | 2007-06-18 22:17:42 +0000 |
| commit | 0d097e34703fd213f60e64d8ec11b046540bff5c (patch) | |
| tree | 162343ccce5c23b45c0bb2c05bb8049f5c401c90 /RecordTimer.py | |
| parent | 2ab7d1b6e14cddd29b459abf58208bec2f8521ed (diff) | |
| download | enigma2-0d097e34703fd213f60e64d8ec11b046540bff5c.tar.gz enigma2-0d097e34703fd213f60e64d8ec11b046540bff5c.zip | |
fixed message dialog "A record has been started" from timer.description to timer.name to prevent confusion
Diffstat (limited to 'RecordTimer.py')
| -rw-r--r-- | RecordTimer.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/RecordTimer.py b/RecordTimer.py index f4ec9a91..73e7eefe 100644 --- a/RecordTimer.py +++ b/RecordTimer.py @@ -327,7 +327,7 @@ class RecordTimerEntry(timer.TimerEntry, object): # TODO: this has to be done. elif event == iRecordableService.evStart: # maybe this should be configurable? - Notifications.AddPopup(text = _("A record has been started:\n%s") % self.description, type = MessageBox.TYPE_INFO, timeout = 3) + Notifications.AddPopup(text = _("A record has been started:\n%s") % self.name, type = MessageBox.TYPE_INFO, timeout = 3) # we have record_service as property to automatically subscribe to record service events def setRecordService(self, service): |
