0.9.1-2 in debian that solve the group bug (commit [4924])

This commit is contained in:
Yann Leboulanger 2006-01-01 19:12:36 +00:00
parent f455e974c1
commit a679fab1ce
2 changed files with 19 additions and 0 deletions

6
debian/changelog vendored
View File

@ -1,3 +1,9 @@
gajim (0.9.1-2) unstable; urgency=low
* fix group bug Closes: #345306
-- Yann Le Boulanger <asterix@lagaule.org> Fri, 30 Dec 2005 13:09:55 +0100
gajim (0.9.1-1) unstable; urgency=low
* new upstream release

View File

@ -0,0 +1,13 @@
Index: src/roster_window.py
===================================================================
--- src/roster_window.py (revision 4923)
+++ src/roster_window.py (working copy)
@@ -87,6 +87,8 @@
model = self.tree.get_model()
root = self.get_account_iter(account)
group_iter = model.iter_children(root)
+ # C_NAME column contacts the pango escaped group name
+ name = gtkgui_helpers.escape_for_pango_markup(name)
while group_iter:
group_name = model[group_iter][C_NAME].decode('utf-8')
if name == group_name: