comparison src/prefs.c @ 3012:08327a2f25aa

[gaim-migrate @ 3025] Lots of people have a problem with people who were added to their MSN reverse list while they were offline, not being prompted to add them to their allow list. Jason Willis fixed that. Also added a global buddy icon animation preference by Luke Schierer. committer: Tailor Script <tailor@pidgin.im>
author Sean Egan <seanegan@gmail.com>
date Wed, 06 Mar 2002 00:18:02 +0000
parents 7239a392486c
children 47d0f8979fb1
comparison
equal deleted inserted replaced
3011:c809f2ed3d92 3012:08327a2f25aa
1007 1007
1008 vbox = gtk_vbox_new(FALSE, 5); 1008 vbox = gtk_vbox_new(FALSE, 5);
1009 gtk_box_pack_start(GTK_BOX(hbox), vbox, TRUE, TRUE, 5); 1009 gtk_box_pack_start(GTK_BOX(hbox), vbox, TRUE, TRUE, 5);
1010 gtk_widget_show(vbox); 1010 gtk_widget_show(vbox);
1011 1011
1012 gaim_button(_("Hide Buddy Icons"), &im_options, OPT_IM_HIDE_ICONS, vbox); 1012 hbox = gtk_hbox_new(FALSE, 5);
1013 gtk_box_pack_start(GTK_BOX(vbox), hbox, TRUE, TRUE, 5);
1014 gtk_widget_show(hbox);
1015 gaim_button(_("Hide Buddy Icons"), &im_options, OPT_IM_HIDE_ICONS, hbox);
1016
1017 gaim_button(_("Disable Buddy Icon Animation"), &im_options, OPT_IM_NO_ANIMATION, hbox);
1013 #endif 1018 #endif
1014 1019
1015 gtk_widget_show(prefdialog); 1020 gtk_widget_show(prefdialog);
1016 } 1021 }
1017 1022