From fe98c5fc5520532700809ce74c5d4210be9afa26 Mon Sep 17 00:00:00 2001
From: Yann Leboulanger <asterix@lagaule.org>
Date: Thu, 30 Mar 2006 21:39:32 +0000
Subject: [PATCH] don't show popup menu for group that can't be renamed

---
 src/roster_window.py | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/src/roster_window.py b/src/roster_window.py
index 290ceed101..6ec5467c7c 100644
--- a/src/roster_window.py
+++ b/src/roster_window.py
@@ -1309,6 +1309,9 @@ class RosterWindow:
 		'''Make group's popup menu'''
 		model = self.tree.get_model()
 		path = model.get_path(iter)
+		group = model[iter][C_JID]
+		if group in helpers.special_groups + (_('General'),):
+			return
 
 		menu = gtk.Menu()
 
-- 
GitLab