From f4e60c14b94fe0155aba9addc908a0b2860b3cd8 Mon Sep 17 00:00:00 2001 From: Felix Domke Date: Thu, 4 Jun 2009 12:24:10 +0200 Subject: make popup message on record configurable. Patch by CuNoah. --- RecordTimer.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'RecordTimer.py') 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): -- cgit v1.2.3