Don't log statusbar messages in signalfilter.

This commit is contained in:
Florian Bruhin 2015-02-09 07:50:32 +01:00
parent 4704e81b41
commit 494825fed0

View File

@ -41,7 +41,8 @@ class SignalFilter(QObject):
BLACKLIST: List of signal names which should not be logged.
"""
BLACKLIST = ['cur_scroll_perc_changed', 'cur_progress']
BLACKLIST = ['cur_scroll_perc_changed', 'cur_progress',
'cur_statusbar_message']
def __init__(self, win_id, parent=None):
super().__init__(parent)