Mercurial > pidgin
changeset 26813:5f9c475b57ca
Don't set the statusbox imhtml to be editable twice.
author | Daniel Atallah <daniel.atallah@gmail.com> |
---|---|
date | Sun, 03 May 2009 23:58:14 +0000 |
parents | 3c06cd0e1717 |
children | 985e7f8d8744 |
files | pidgin/gtkstatusbox.c |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- 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));