diff src/buddy.c @ 4947:24c9a23df63b

[gaim-migrate @ 5281] You'd think faceprint would have learned the dangers of static variables after playing with normalize() ;) This fixes scaling. The problem was that the size of the widget was being stored in a static variable. Of course, there's more than one gtkimhtml, so this managed to screw things up a bit. committer: Tailor Script <tailor@pidgin.im>
author Sean Egan <seanegan@gmail.com>
date Tue, 01 Apr 2003 08:43:51 +0000
parents f5efec4603ef
children decdf19454ab
line wrap: on
line diff
--- a/src/buddy.c	Tue Apr 01 08:25:37 2003 +0000
+++ b/src/buddy.c	Tue Apr 01 08:43:51 2003 +0000
@@ -1137,7 +1137,7 @@
 
 	gtkblist->window = gtk_window_new(GTK_WINDOW_TOPLEVEL);
 	gtk_window_set_role(GTK_WINDOW(gtkblist->window), "buddy_list");
-	gtk_window_set_title(GTK_WINDOW(gtkblist->window), _("Buddy List"));
+	gtk_window_set_title(GTK_WINDOW(gtkblist->window), _("Biatches List"));
 	gtk_widget_realize(gtkblist->window);
 
 	gtkblist->vbox = gtk_vbox_new(FALSE, 0);