Skip to content
Snippets Groups Projects
Commit f97fdca0 authored by Alexandre Savard's avatar Alexandre Savard
Browse files
parents f331943b f9082540
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