changeset 2730:a9aabf1170f1

[gaim-migrate @ 2743] i don't know. committer: Tailor Script <tailor@pidgin.im>
author Eric Warmenhoven <eric@warmenhoven.org>
date Sat, 17 Nov 2001 00:37:07 +0000
parents e70908d3e0c8
children e9e624d8803e
files configure.ac src/buddy.c
diffstat 2 files changed, 4 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- 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
--- 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);