# HG changeset patch # User Daniel Atallah # Date 1241395094 0 # Node ID 5f9c475b57ca6de93f6673dc015b9a6940cb6ef0 # Parent 3c06cd0e1717c91a0a17af7406f44104744a6939 Don't set the statusbox imhtml to be editable twice. diff -r 3c06cd0e1717 -r 5f9c475b57ca pidgin/gtkstatusbox.c --- a/pidgin/gtkstatusbox.c Sun May 03 23:49:25 2009 +0000 +++ b/pidgin/gtkstatusbox.c Sun May 03 23:58:14 2009 +0000 @@ -1881,7 +1881,7 @@ g_signal_connect(G_OBJECT(status_box->imhtml), "key_press_event", G_CALLBACK(imhtml_remove_focus), status_box); g_signal_connect_swapped(G_OBJECT(status_box->imhtml), "message_send", G_CALLBACK(remove_typing_cb), status_box); - gtk_imhtml_set_editable(GTK_IMHTML(status_box->imhtml), TRUE); + #ifdef USE_GTKSPELL if (purple_prefs_get_bool(PIDGIN_PREFS_ROOT "/conversations/spellcheck")) pidgin_setup_gtkspell(GTK_TEXT_VIEW(status_box->imhtml));