80chars
This commit is contained in:
parent
356aec16ec
commit
ec37afe018
|
@ -397,7 +397,8 @@ class GroupchatWindow(chat.Chat):
|
||||||
subject = reduce(lambda e, e1: e + '\n' + e1, subjects)
|
subject = reduce(lambda e, e1: e + '\n' + e1, subjects)
|
||||||
|
|
||||||
subject = gtkgui_helpers.escape_for_pango_markup(subject)
|
subject = gtkgui_helpers.escape_for_pango_markup(subject)
|
||||||
name_label.set_markup('<span weight="heavy" size="x-large">%s</span>\n%s' % (room_jid, subject))
|
name_label.set_markup(
|
||||||
|
'<span weight="heavy" size="x-large">%s</span>\n%s' % (room_jid, subject))
|
||||||
event_box = name_label.get_parent()
|
event_box = name_label.get_parent()
|
||||||
if subject == '':
|
if subject == '':
|
||||||
subject = _('This room has no subject')
|
subject = _('This room has no subject')
|
||||||
|
|
Loading…
Reference in New Issue