comparison src/gtkprefs.c @ 10100:fad5d3354cc1

[gaim-migrate @ 11123] The slashing begins. I moved the formatting bindings to gtk_binding stuff from a key_press_event. This will not interfere with gtkrc keybindings. I'm hoping moving GDK_Enter here will fix the input method bug, but I'll try that some other time. This took me FOREVER to figure out. committer: Tailor Script <tailor@pidgin.im>
author Sean Egan <seanegan@gmail.com>
date Fri, 15 Oct 2004 03:14:46 +0000
parents 9fdbfe832fac
children f0100b414d98
comparison
equal deleted inserted replaced
10099:c49cc5b818cf 10100:fad5d3354cc1
883 883
884 vbox = gaim_gtk_make_frame (ret, _("Window Closing")); 884 vbox = gaim_gtk_make_frame (ret, _("Window Closing"));
885 gaim_gtk_prefs_checkbox(_("_Escape closes window"), 885 gaim_gtk_prefs_checkbox(_("_Escape closes window"),
886 "/gaim/gtk/conversations/escape_closes", vbox); 886 "/gaim/gtk/conversations/escape_closes", vbox);
887 887
888 vbox = gaim_gtk_make_frame(ret, _("Insertions"));
889 gaim_gtk_prefs_checkbox(_("Control-{B/I/U} changes _formatting"),
890 "/gaim/gtk/conversations/html_shortcuts", vbox);
891 gaim_gtk_prefs_checkbox(_("Control-(number) _inserts smileys"),
892 "/gaim/gtk/conversations/smiley_shortcuts", vbox);
893
894 gtk_widget_show_all(ret); 888 gtk_widget_show_all(ret);
895 return ret; 889 return ret;
896 } 890 }
897 891
898 GtkWidget *list_page() { 892 GtkWidget *list_page() {