[empathy] Embolden tab labels when you're highlighted



commit 7d7bc4c67767952b926eb9c3431e485d1e59b6b2
Author: Will Thompson <will thompson collabora co uk>
Date:   Wed Aug 5 11:08:44 2009 +0100

    Embolden tab labels when you're highlighted
    
    This is in addition to en-reddening them, which might not be enough if
    you can't distinguish red and black, and matches how names are
    highlighted in the conversation window.
    
    Ideally this would be theme-able, but this is a start.

 src/empathy-chat-window.c |    3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)
---
diff --git a/src/empathy-chat-window.c b/src/empathy-chat-window.c
index 3e77553..6dbbc0b 100644
--- a/src/empathy-chat-window.c
+++ b/src/empathy-chat-window.c
@@ -1003,7 +1003,8 @@ chat_window_set_highlight_room_tab_label (EmpathyChat *chat)
 	if (!empathy_chat_is_room (chat))
 		return;
 
-	markup = g_markup_printf_escaped ("<span color=\"red\">%s</span>",
+	markup = g_markup_printf_escaped (
+		"<span color=\"red\" weight=\"bold\">%s</span>",
 		empathy_chat_get_name (chat));
 
 	widget = g_object_get_data (G_OBJECT (chat), "chat-window-tab-label");



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]