im.pidgin.pidgin: c6a89223516b0abb6cbb399c2066e3b6a7b69d19
markdoliner at pidgin.im
markdoliner at pidgin.im
Tue Oct 16 03:15:35 EDT 2007
-----------------------------------------------------------------
Revision: c6a89223516b0abb6cbb399c2066e3b6a7b69d19
Ancestor: f92666cee921c27cab8400f3cf81bfe980e2c454
Author: markdoliner at pidgin.im
Date: 2007-10-16T07:10:33
Branch: im.pidgin.pidgin
Modified files:
pidgin/gtkconv.c
ChangeLog:
weight="bold" was getting set twice on tab titles when receiving an
IM, causing me to get one of these puppies each time:
Gtk: Failed to set text from markup due to error parsing markup: Attribute 'weight' occurs twice on <span> tag on line 1 char 59, may only occur once
-------------- next part --------------
============================================================
--- pidgin/gtkconv.c 48886ad62ef87de8f3046caeec88084c860aede6
+++ pidgin/gtkconv.c 7b476175469c1a5fd67cb516d841ef5e96435fef
@@ -6581,9 +6581,9 @@ pidgin_conv_update_fields(PurpleConversa
} else if (gtkconv->unseen_state == PIDGIN_UNSEEN_TEXT) {
atk_object_set_description(accessibility_obj, _("Unread Messages"));
if (gtkconv->active_conv->type == PURPLE_CONV_TYPE_CHAT)
- style = "color=\"#204a87\" weight=\"bold\"";
+ style = "color=\"#204a87\"";
else
- style = "color=\"#cc0000\" weight=\"bold\"";
+ style = "color=\"#cc0000\"";
} else if (gtkconv->unseen_state == PIDGIN_UNSEEN_EVENT) {
atk_object_set_description(accessibility_obj, _("New Event"));
style = "color=\"#888a85\"";
@@ -6595,7 +6595,7 @@ pidgin_conv_update_fields(PurpleConversa
gtkconv->unseen_state == PIDGIN_UNSEEN_NICK ||
gtkconv->unseen_state == PIDGIN_UNSEEN_EVENT)
bold = TRUE;
-
+
if (style || bold)
{
char *html_title,*label;
More information about the Commits
mailing list