# HG changeset patch # User Eric Warmenhoven # Date 1005957427 0 # Node ID a9aabf1170f13a9447c9c490292aa07f617a6978 # Parent e70908d3e0c890c74a450a6309df96d9c04739f3 [gaim-migrate @ 2743] i don't know. committer: Tailor Script diff -r e70908d3e0c8 -r a9aabf1170f1 configure.ac --- a/configure.ac Fri Nov 16 23:56:55 2001 +0000 +++ b/configure.ac Sat Nov 17 00:37:07 2001 +0000 @@ -174,7 +174,7 @@ AM_PATH_GTK(1.2.3,,AC_MSG_ERROR([ *** GTK+ is required to build Gaim; please make sure you have the GTK+ *** development headers installed. The latest version of GTK+ is -*** always available at http://www.gtk.org/.]),gthread) +*** always available at http://www.gtk.org/.])) UI_LIBS="$UI_LIBS $GTK_LIBS" AC_PATH_PROG(gaimpath, gaim) fi diff -r e70908d3e0c8 -r a9aabf1170f1 src/buddy.c --- a/src/buddy.c Fri Nov 16 23:56:55 2001 +0000 +++ b/src/buddy.c Sat Nov 17 00:37:07 2001 +0000 @@ -1973,7 +1973,9 @@ if (blist_options & OPT_BLIST_SHOW_IDLETIME) gtk_widget_show(bs->idle); - style = gtk_style_copy(bs->idle->style); + style = gtk_style_new(); + gdk_font_unref(gtk_style_get_font(style)); + gtk_style_set_font(style, gdk_font_ref(gtk_style_get_font(bs->label->style))); if ((blist_options & OPT_BLIST_GREY_IDLERS) && (b->idle)) { style->fg[GTK_STATE_NORMAL].red = (style->fg[GTK_STATE_NORMAL].red / 2) + (style->base[GTK_STATE_NORMAL].red / 2);