From: Sean E. <sea...@us...> - 2002-03-03 05:02:24
|
Update of /cvsroot/gaim/gaim/src In directory usw-pr-cvs1:/tmp/cvs-serv23772/src Modified Files: dialogs.c Log Message: Editable typing buddy pounces. Index: dialogs.c =================================================================== RCS file: /cvsroot/gaim/gaim/src/dialogs.c,v retrieving revision 1.303 retrieving revision 1.304 diff -u -d -r1.303 -r1.304 --- dialogs.c 3 Mar 2002 02:53:46 -0000 1.303 +++ dialogs.c 3 Mar 2002 05:02:21 -0000 1.304 @@ -1301,6 +1301,9 @@ gtk_widget_show(b->p_unidle); b->p_typing = gtk_check_button_new_with_label(_("Pounce when buddy is typing to you")); + if (edit_bp) + gtk_toggle_button_set_state(GTK_TOGGLE_BUTTON(b->p_typing), + (edit_bp->options & OPT_POUNCE_TYPING) ? TRUE : FALSE); gtk_table_attach(GTK_TABLE(table), b->p_typing,1,2,1,2, GTK_FILL | GTK_EXPAND, 0, 0, 0); gtk_widget_show(b->p_typing); |