From: Nathan Samson Date: Sun, 4 Sep 2011 00:37:22 +0000 (+0200) Subject: Improve the layout of the text entries in gtk3. For gtk2 this could also be useful X-Git-Url: http://git.tdb.fi/?a=commitdiff_plain;h=3a04342607a9fa7255be60ee5d4b8a816ecb7b0a;hp=4d62478e14fe8bef8ae88a55b0864217b400b719;p=ext%2Fsubsurface.git Improve the layout of the text entries in gtk3. For gtk2 this could also be useful Signed-off-by: Nathan Samson Signed-off-by: Linus Torvalds --- diff --git a/info.c b/info.c index 75936f4..55708be 100644 --- a/info.c +++ b/info.c @@ -151,10 +151,16 @@ static GtkTextBuffer *text_entry(GtkWidget *box, const char *label, gboolean exp gtk_box_pack_start(GTK_BOX(box), frame, expand, expand, 0); + GtkWidget* scrolled_window = gtk_scrolled_window_new (0, 0); + gtk_scrolled_window_set_shadow_type(GTK_SCROLLED_WINDOW(scrolled_window), GTK_SHADOW_IN); + gtk_widget_show(scrolled_window); + view = gtk_text_view_new (); + gtk_container_add(GTK_CONTAINER(scrolled_window), view); + buffer = gtk_text_view_get_buffer (GTK_TEXT_VIEW (view)); - gtk_container_add(GTK_CONTAINER(frame), view); + gtk_container_add(GTK_CONTAINER(frame), scrolled_window); return buffer; }