banner_tweaks plugin. Fixed again

This commit is contained in:
Denis Fomin 2011-05-21 23:34:31 +04:00
parent d638922384
commit 3694c8682a
1 changed files with 4 additions and 4 deletions

View File

@ -79,12 +79,12 @@ class BannerTweaksPlugin(GajimPlugin):
chat_control.banner_status_label.set_markup(status_text)
if not self.config['show_banner_image']:
if chat_control.type_id == 'chat':
banner_status_img = chat_control.xml.get_object(
'banner_status_image')
else:
if chat_control.TYPE_ID == message_control.TYPE_GC:
banner_status_img = chat_control.xml.get_object(
'gc_banner_status_image')
else:
banner_status_img = chat_control.xml.get_object(
'banner_status_image')
banner_status_img.clear()
# TODO: part below repeats a lot of code from ChatControl.draw_banner_text()