Mercurial > pidgin
changeset 32662:1b4988e242fc
The default widget name for gtkconv->tab_label should be "tab-label",
not NULL, as that's what's set when it's created. See line ~9429.
author | Elliott Sales de Andrade <qulogic@pidgin.im> |
---|---|
date | Tue, 15 Mar 2011 04:33:51 +0000 |
parents | fa4662e64fc3 |
children | 79a8ed88de20 |
files | pidgin/gtkconv.c |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/pidgin/gtkconv.c Tue Mar 15 04:15:58 2011 +0000 +++ b/pidgin/gtkconv.c Tue Mar 15 04:33:51 2011 +0000 @@ -6927,7 +6927,7 @@ atk_object_set_description(accessibility_obj, _("New Event")); style = "tab-label-event"; } else { - style = NULL; + style = "tab-label"; } gtk_widget_set_name(gtkconv->tab_label, style);