From 37c08ee03337129b10372c84bd1b9a407b54a499 Mon Sep 17 00:00:00 2001
From: Jean-Marie Traissard <jim@lapin.org>
Date: Mon, 25 Sep 2006 16:02:13 +0000
Subject: [PATCH] Visual Test : show after the nick in tooltip

---
 src/tooltips.py | 15 ++++++---------
 1 file changed, 6 insertions(+), 9 deletions(-)

diff --git a/src/tooltips.py b/src/tooltips.py
index 9857bd0a09..b5ff6af858 100644
--- a/src/tooltips.py
+++ b/src/tooltips.py
@@ -366,15 +366,12 @@ class GCTooltip(BaseTooltip):
 		properties = []
 		status_message_present = False
 
-		nick_markup = '<span weight="bold">' + \
+		show = helpers.get_uf_show(contact.show)
+		nick_show_markup = '<span weight="bold">' + \
 			gtkgui_helpers.escape_for_pango_markup(contact.get_shown_name()) \
-			+ '</span>'
-		properties.append((nick_markup, None))
+			+ '</span> (' + show + ')' 
+		properties.append((nick_show_markup, None))
 
-		# status :
-		show = helpers.get_uf_show(contact.show)
-		properties.append((show, None))
-		
 		#status message :
 		if contact.status:
 			status_message = contact.status.strip()
@@ -411,8 +408,8 @@ class GCTooltip(BaseTooltip):
 		while properties:
 			property = properties.pop(0)
 			vcard_current_row += 1
-			if vcard_current_row == 4 and not status_message_present or\
-				vcard_current_row == 5 and status_message_present:
+			if vcard_current_row == 3 and not status_message_present or\
+				vcard_current_row == 4 and status_message_present:
 			# horizontal separator after status, if something after
 				h_separator = gtk.HSeparator()
 				vcard_table.attach(h_separator, 1, 3, vcard_current_row, vcard_current_row + 1,\
-- 
GitLab