From b6918879b57045dded17dea4661c4b37b9c2ec39 Mon Sep 17 00:00:00 2001
From: Nikos Kouremenos <kourem@gmail.com>
Date: Thu, 9 Jun 2005 17:57:40 +0000
Subject: [PATCH] fix the menuitem. Sorry for bad command in my previous commit

---
 src/roster_window.py | 5 +----
 1 file changed, 1 insertion(+), 4 deletions(-)

diff --git a/src/roster_window.py b/src/roster_window.py
index b003c97151..c1c7cd1433 100644
--- a/src/roster_window.py
+++ b/src/roster_window.py
@@ -306,10 +306,7 @@ def make_menu(self):
 				our_jid = gajim.config.get_per('accounts', account, 'name') + '@' +\
 					gajim.config.get_per('accounts', account, 'hostname')
 				lbl = gtk.Label()
-				lbl.set_markup('<b>abc</b>')
-				item = gtk.MenuItem()
-				item.add(lbl)
-				#item = gtk.MenuItem(_('as ') + our_jid)
+				item = gtk.MenuItem(_('as ') + our_jid)
 				sub_menu.append(item)
 				item.connect('activate', self.on_join_gc_activate, account)
 			sub_menu.show_all()
-- 
GitLab