comparison src/prefs.c @ 3013:47d0f8979fb1

[gaim-migrate @ 3026] ICQ buddies coming back from away will no longer appear to be unavailable. committer: Tailor Script <tailor@pidgin.im>
author Sean Egan <seanegan@gmail.com>
date Wed, 06 Mar 2002 05:26:58 +0000
parents 08327a2f25aa
children 0486d3d00d0e
comparison
equal deleted inserted replaced
3012:08327a2f25aa 3013:47d0f8979fb1
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 hbox = gtk_hbox_new(FALSE, 5); 1012 gaim_button(_("Hide Buddy Icons"), &im_options, OPT_IM_HIDE_ICONS, vbox);
1013 gtk_box_pack_start(GTK_BOX(vbox), hbox, TRUE, TRUE, 5); 1013
1014 gtk_widget_show(hbox); 1014 vbox = gtk_vbox_new(FALSE, 5);
1015 gaim_button(_("Hide Buddy Icons"), &im_options, OPT_IM_HIDE_ICONS, hbox); 1015 gtk_box_pack_start(GTK_BOX(hbox), vbox, TRUE, TRUE, 5);
1016 gtk_widget_show(vbox);
1016 1017
1017 gaim_button(_("Disable Buddy Icon Animation"), &im_options, OPT_IM_NO_ANIMATION, hbox); 1018 gaim_button(_("Disable Buddy Icon Animation"), &im_options, OPT_IM_NO_ANIMATION, vbox);
1018 #endif 1019 #endif
1019 1020
1020 gtk_widget_show(prefdialog); 1021 gtk_widget_show(prefdialog);
1021 } 1022 }
1022 1023
2723 set_hide_icons(); 2724 set_hide_icons();
2724 2725
2725 if (option == OPT_IM_ALIAS_TAB) 2726 if (option == OPT_IM_ALIAS_TAB)
2726 set_convo_titles(); 2727 set_convo_titles();
2727 2728
2729 if (option == OPT_IM_NO_ANIMATION)
2730 set_anim();
2731
2728 save_prefs(); 2732 save_prefs();
2729 } 2733 }
2730 2734
2731 static void set_chat_option(GtkWidget *w, int option) 2735 static void set_chat_option(GtkWidget *w, int option)
2732 { 2736 {