diff --git a/src/common/gajim.py b/src/common/gajim.py index 31df1b4ea..9a2ff9528 100644 --- a/src/common/gajim.py +++ b/src/common/gajim.py @@ -183,7 +183,7 @@ else: import latex HAVE_LATEX = latex.check_for_latex_support() -HAVE_INDICATOR = False +HAVE_INDICATOR = True try: import indicate except ImportError: diff --git a/src/notify.py b/src/notify.py index 507794340..3d9eb6051 100644 --- a/src/notify.py +++ b/src/notify.py @@ -341,7 +341,7 @@ def popup(event_type, jid, account, msg_type='', path_to_image=None, if gajim.HAVE_INDICATOR and event_type in (_('New Message'), _('New Single Message'), _('New Private Message')): - indicator = indicate.IndicatorMessage() + indicator = indicate.Indicator() indicator.set_property('subtype', 'im') indicator.set_property('sender', jid) indicator.set_property('body', text)