forked from openlp/openlp
Stop blank alerts being displayed
This commit is contained in:
parent
f1e04b6d62
commit
ba57e335c0
@ -57,8 +57,6 @@ class AlertsManager(QtCore.QObject):
|
||||
"""
|
||||
if message:
|
||||
self.displayAlert(message[0])
|
||||
else:
|
||||
self.displayAlert(u'')
|
||||
|
||||
def displayAlert(self, text=u''):
|
||||
"""
|
||||
@ -68,6 +66,7 @@ class AlertsManager(QtCore.QObject):
|
||||
display text
|
||||
"""
|
||||
log.debug(u'display alert called %s' % text)
|
||||
if text:
|
||||
self.alertList.append(text)
|
||||
if self.timer_id != 0:
|
||||
Receiver.send_message(u'mainwindow_status_text',
|
||||
|
Loading…
Reference in New Issue
Block a user