mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
Word wrap the info textview. Also do not show the scrollbars if not necessary.
Signed-off-by: Nathan Samson <nathansamson@gmail.com>
This commit is contained in:
parent
5ea6b229f8
commit
14547d8ca2
1 changed files with 2 additions and 0 deletions
2
info.c
2
info.c
|
@ -167,10 +167,12 @@ static GtkTextBuffer *text_view(GtkWidget *box, const char *label, gboolean expa
|
|||
gtk_box_pack_start(GTK_BOX(box), frame, expand, expand, 0);
|
||||
|
||||
GtkWidget* scrolled_window = gtk_scrolled_window_new (0, 0);
|
||||
gtk_scrolled_window_set_policy(GTK_SCROLLED_WINDOW(scrolled_window), GTK_POLICY_AUTOMATIC, GTK_POLICY_AUTOMATIC);
|
||||
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_text_view_set_wrap_mode(GTK_TEXT_VIEW(view), GTK_WRAP_WORD);
|
||||
gtk_container_add(GTK_CONTAINER(scrolled_window), view);
|
||||
|
||||
buffer = gtk_text_view_get_buffer (GTK_TEXT_VIEW (view));
|
||||
|
|
Loading…
Add table
Reference in a new issue