diff options
-rw-r--r-- | src/tab-chrome.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/tab-chrome.c b/src/tab-chrome.c index 1aebdb7..3ca8df2 100644 --- a/src/tab-chrome.c +++ b/src/tab-chrome.c @@ -203,12 +203,20 @@ back_forward_box_button_press_cb(GtkWidget *widget, GdkEvent *event, /* Set up the list scrolled window. */ list_scrolled_window = gtk_scrolled_window_new(NULL, NULL); + gtk_scrolled_window_set_min_content_width( + GTK_SCROLLED_WINDOW(list_scrolled_window), 400); + gtk_scrolled_window_set_min_content_height( + GTK_SCROLLED_WINDOW(list_scrolled_window), 200); /* gtk_scrolled_window_set_propagate_natural_width( GTK_SCROLLED_WINDOW(list_scrolled_window), TRUE); */ gtk_container_add(GTK_CONTAINER(list_scrolled_window), list_box); /* Set up the text scrolled window. */ text_scrolled_window = gtk_scrolled_window_new(NULL, NULL); + gtk_scrolled_window_set_min_content_width( + GTK_SCROLLED_WINDOW(text_scrolled_window), 400); + gtk_scrolled_window_set_min_content_height( + GTK_SCROLLED_WINDOW(text_scrolled_window), 200); /* gtk_scrolled_window_set_propagate_natural_width( GTK_SCROLLED_WINDOW(text_scrolled_window), TRUE); */ gtk_container_add(GTK_CONTAINER(text_scrolled_window), text_view); |