diff options
author | Will Thompson <will.thompson@collabora.co.uk> | 2009-08-05 18:08:44 +0800 |
---|---|---|
committer | Will Thompson <will.thompson@collabora.co.uk> | 2009-08-05 18:59:04 +0800 |
commit | 7d7bc4c67767952b926eb9c3431e485d1e59b6b2 (patch) | |
tree | 88d18deb1f631b09909f4aa96b150553380f58e7 /src/empathy-chat-window.c | |
parent | e7cfecf66b0620de55633444855999d974acd6f2 (diff) | |
download | gsoc2013-empathy-7d7bc4c67767952b926eb9c3431e485d1e59b6b2.tar gsoc2013-empathy-7d7bc4c67767952b926eb9c3431e485d1e59b6b2.tar.gz gsoc2013-empathy-7d7bc4c67767952b926eb9c3431e485d1e59b6b2.tar.bz2 gsoc2013-empathy-7d7bc4c67767952b926eb9c3431e485d1e59b6b2.tar.lz gsoc2013-empathy-7d7bc4c67767952b926eb9c3431e485d1e59b6b2.tar.xz gsoc2013-empathy-7d7bc4c67767952b926eb9c3431e485d1e59b6b2.tar.zst gsoc2013-empathy-7d7bc4c67767952b926eb9c3431e485d1e59b6b2.zip |
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.
Diffstat (limited to 'src/empathy-chat-window.c')
-rw-r--r-- | 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 3e77553b3..6dbbc0b3b 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"); |