Skip to content
Snippets Groups Projects
Commit f9082540 authored by Emmanuel Milou's avatar Emmanuel Milou
Browse files

#7594 Fix instant messaging input area

parent 8ec4d1f0
No related branches found
No related tags found
No related merge requests found
......@@ -238,7 +238,7 @@ im_widget_init(IMWidget *im)
im->info_bar = gtk_info_bar_new();
/* A bar with the entry text and the button to send the message */
GtkWidget *box = gtk_box_new(GTK_ORIENTATION_HORIZONTAL, 10);
GtkWidget *box = gtk_box_new(GTK_ORIENTATION_VERTICAL, 10);
gtk_text_view_set_editable(GTK_TEXT_VIEW(im->textarea), TRUE);
gtk_scrolled_window_set_policy(GTK_SCROLLED_WINDOW(textscrollwin), GTK_POLICY_NEVER, GTK_POLICY_NEVER);
gtk_scrolled_window_set_policy(GTK_SCROLLED_WINDOW(webscrollwin), GTK_POLICY_AUTOMATIC, GTK_POLICY_AUTOMATIC);
......@@ -269,6 +269,7 @@ im_widget_init(IMWidget *im)
*/
gtk_orientable_set_orientation (GTK_ORIENTABLE (im),
GTK_ORIENTATION_VERTICAL);
}
GType
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment