comparison src/prefs.c @ 4449:faa9b636707a

[gaim-migrate @ 4724] Whoops. committer: Tailor Script <tailor@pidgin.im>
author Sean Egan <seanegan@gmail.com>
date Tue, 28 Jan 2003 16:57:58 +0000
parents a65555132674
children ce5b64fac95d
comparison
equal deleted inserted replaced
4448:74d83e3a7a47 4449:faa9b636707a
681 gtk_size_group_add_widget(sg, dd); 681 gtk_size_group_add_widget(sg, dd);
682 682
683 vbox = make_frame (ret, _("Tab Options")); 683 vbox = make_frame (ret, _("Tab Options"));
684 gaim_button(_("Show IMs and chats in _same tabbed window."), &convo_options, OPT_CONVO_COMBINE, vbox); 684 gaim_button(_("Show IMs and chats in _same tabbed window."), &convo_options, OPT_CONVO_COMBINE, vbox);
685 button = gaim_button(_("Show _close button on tabs."), &convo_options, OPT_CONVO_NO_X_ON_TAB, vbox); 685 button = gaim_button(_("Show _close button on tabs."), &convo_options, OPT_CONVO_NO_X_ON_TAB, vbox);
686 convo_options ^= OPT_CONVO_NO_X_ON_TAB;
686 gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON(button), !gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(button))); 687 gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON(button), !gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(button)));
687 convo_options ^= OPT_CONVO_NO_X_ON_TAB;
688 688
689 689
690 gtk_widget_show_all(ret); 690 gtk_widget_show_all(ret);
691 return ret; 691 return ret;
692 } 692 }