mirror of
https://github.com/subsurface/subsurface.git
synced 2025-01-19 14:25:27 +00:00
Improve the layout of the text entries in gtk3. For gtk2 this could also be useful
Signed-off-by: Nathan Samson <nathansamson@gmail.com> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
parent
4d62478e14
commit
3a04342607
1 changed files with 7 additions and 1 deletions
8
info.c
8
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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue