diff options
-rw-r--r-- | src/caja-property-browser.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/caja-property-browser.c b/src/caja-property-browser.c index 253e6303..6a9f4dd7 100644 --- a/src/caja-property-browser.c +++ b/src/caja-property-browser.c @@ -2186,6 +2186,9 @@ caja_property_browser_update_contents (CajaPropertyBrowser *property_browser) /* allocate a new container, with a scrollwindow and viewport */ property_browser->details->content_frame = gtk_scrolled_window_new (NULL, NULL); +#if GTK_CHECK_VERSION (3, 0, 0) + gtk_widget_set_vexpand (property_browser->details->content_frame, TRUE); +#endif viewport = gtk_viewport_new (NULL, NULL); gtk_widget_show(viewport); gtk_viewport_set_shadow_type(GTK_VIEWPORT(viewport), GTK_SHADOW_IN); |