From 1f5e991af0ad5eae7d34e0b5d1eb6d7194cdabab Mon Sep 17 00:00:00 2001
From: Nikos Kouremenos <kourem@gmail.com>
Date: Thu, 5 May 2005 13:18:44 +0000
Subject: [PATCH] remove tab should have the show status image show/hide code,
 cause switch page is not enough

---
 src/tabbed_chat_window.py | 8 ++++++++
 1 file changed, 8 insertions(+)

diff --git a/src/tabbed_chat_window.py b/src/tabbed_chat_window.py
index 1ac0dc420b..f1e9c7cee0 100644
--- a/src/tabbed_chat_window.py
+++ b/src/tabbed_chat_window.py
@@ -153,6 +153,14 @@ class Tabbed_chat_window(chat.Chat):
 		if len(self.xmls) > 0:
 			del self.users[jid]
 
+		jid = self.get_active_jid() # get the new active jid  
+		nontabbed_status_image = self.xmls[jid].get_widget(
+			'nontabbed_status_image')  
+		if len(self.xmls) > 1:  
+			nontabbed_status_image.hide()  
+		else:  
+			nontabbed_status_image.show()  
+
 	def new_user(self, user):
 		self.names[user.jid] = user.name
 		self.xmls[user.jid] = gtk.glade.XML(GTKGUI_GLADE, 'chats_vbox', APP)
-- 
GitLab