Use spell entry for topicbar

Closes #150
This commit is contained in:
TingPing 2013-10-02 01:20:38 -04:00
parent 67a488033b
commit da680f1066
1 changed files with 2 additions and 1 deletions

View File

@ -2161,8 +2161,9 @@ mg_create_topicbar (session *sess, GtkWidget *box)
if (!gui->is_tab)
sess->res->tab = NULL;
gui->topic_entry = topic = gtk_entry_new ();
gui->topic_entry = topic = sexy_spell_entry_new ();
gtk_widget_set_name (topic, "hexchat-inputbox");
sexy_spell_entry_set_checked (SEXY_SPELL_ENTRY (topic), FALSE);
gtk_container_add (GTK_CONTAINER (hbox), topic);
g_signal_connect (G_OBJECT (topic), "activate",
G_CALLBACK (mg_topic_cb), 0);