# HG changeset patch # User Mark Doliner # Date 1101101769 0 # Node ID d672afd04dcd3a0f4dc9cca1dc231f8cb1bad92c # Parent e8d62dc363c5879e245790bc940d56a29d8770d6 [gaim-migrate @ 11369] "text replacement cosmetic change," patch 705648 from Craig Slusher. This was submitted on 2003-03-18 and it still basically applies. Neat. "This just changes the way that the plugin reacts to the 'Add' button being clicked. After the replacement is placed into the list, the text boxes are cleared and the 'You type:' box gains focus" committer: Tailor Script diff -r e8d62dc363c5 -r d672afd04dcd COPYRIGHT --- a/COPYRIGHT Mon Nov 22 05:10:00 2004 +0000 +++ b/COPYRIGHT Mon Nov 22 05:36:09 2004 +0000 @@ -151,6 +151,7 @@ Jim Seymour Joe Shaw John Silvestri +Craig Slusher Alex Smith David Smock Phil Snowberger diff -r e8d62dc363c5 -r d672afd04dcd plugins/spellchk.c --- a/plugins/spellchk.c Mon Nov 22 05:10:00 2004 +0000 +++ b/plugins/spellchk.c Mon Nov 22 05:36:09 2004 +0000 @@ -262,7 +262,8 @@ 0, gtk_entry_get_text(GTK_ENTRY(bad_entry)), 1, gtk_entry_get_text(GTK_ENTRY(good_entry)), -1); - gtk_editable_select_region(GTK_EDITABLE(bad_entry), 0, -1); + gtk_editable_delete_text(GTK_EDITABLE(bad_entry), 0, -1); + gtk_editable_delete_text(GTK_EDITABLE(good_entry), 0, -1); gtk_widget_grab_focus(bad_entry); save_list();