diff options
author | Wolfgang Ulbrich <[email protected]> | 2016-01-23 17:59:42 +0100 |
---|---|---|
committer | Wolfgang Ulbrich <[email protected]> | 2016-01-23 17:59:42 +0100 |
commit | b058255bef4dab6ce19c6b056af2b32cd2e386a0 (patch) | |
tree | 0c20988bd6d69f16e90e9c511ca9922dc1f745d9 /src | |
parent | 709163687da777a4489b48d4a1f3da4637bab111 (diff) | |
download | caja-b058255bef4dab6ce19c6b056af2b32cd2e386a0.tar.bz2 caja-b058255bef4dab6ce19c6b056af2b32cd2e386a0.tar.xz |
GTK3 property-browser: expand the GtkScrolledWindow vertical
Diffstat (limited to 'src')
-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); |