aboutsummaryrefslogtreecommitdiff
path: root/RecordTimer.py
diff options
context:
space:
mode:
authorFelix Domke <tmbinc@elitedvb.net>2009-06-04 12:24:10 +0200
committerFelix Domke <tmbinc@elitedvb.net>2009-06-04 12:24:10 +0200
commitf4e60c14b94fe0155aba9addc908a0b2860b3cd8 (patch)
tree18a8b9ecf848aa8edae20624071209f61eaa338a /RecordTimer.py
parentd18113ea974703c0c6fc0396e83dbf59bc9e5b26 (diff)
downloadenigma2-f4e60c14b94fe0155aba9addc908a0b2860b3cd8.tar.gz
enigma2-f4e60c14b94fe0155aba9addc908a0b2860b3cd8.zip
make popup message on record configurable. Patch by CuNoah.
Diffstat (limited to 'RecordTimer.py')
-rw-r--r--RecordTimer.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/RecordTimer.py b/RecordTimer.py
index e8b76e92..1f65038c 100644
--- a/RecordTimer.py
+++ b/RecordTimer.py
@@ -356,8 +356,8 @@ class RecordTimerEntry(timer.TimerEntry, object):
if self.dirnameHadToFallback:
text = '\n'.join((text, _("Please note that the previously selected media could not be accessed and therefore the default directory is being used instead.")))
- # maybe this should be configurable?
- Notifications.AddPopup(text = text, type = MessageBox.TYPE_INFO, timeout = 3)
+ if config.usage.show_message_when_recording_starts.value:
+ Notifications.AddPopup(text = text, type = MessageBox.TYPE_INFO, timeout = 3)
# we have record_service as property to automatically subscribe to record service events
def setRecordService(self, service):