From a824d0543c1b53bc35d6c71b0a729f1d9991e781 Mon Sep 17 00:00:00 2001 From: raveit65 Date: Mon, 8 Jan 2018 13:23:58 +0100 Subject: ui: don't use overlay-scrollbars make it consistent with behaviour for caja-places-sidebar --- src/caja-property-browser.c | 8 ++++++++ 1 file changed, 8 insertions(+) mode change 100644 => 100755 src/caja-property-browser.c (limited to 'src/caja-property-browser.c') diff --git a/src/caja-property-browser.c b/src/caja-property-browser.c old mode 100644 new mode 100755 index 8c4bb5f7..a7e517c4 --- a/src/caja-property-browser.c +++ b/src/caja-property-browser.c @@ -326,6 +326,10 @@ caja_property_browser_init (CajaPropertyBrowser *property_browser) gtk_widget_show (property_browser->details->category_container); gtk_scrolled_window_set_policy (GTK_SCROLLED_WINDOW (property_browser->details->category_container), GTK_POLICY_NEVER, GTK_POLICY_AUTOMATIC); +#if GTK_CHECK_VERSION (3, 16, 0) + gtk_scrolled_window_set_overlay_scrolling (GTK_SCROLLED_WINDOW (property_browser->details->category_container), + FALSE); +#endif /* allocate a table to hold the category selector */ property_browser->details->category_box = gtk_box_new (GTK_ORIENTATION_VERTICAL, 6); @@ -2204,6 +2208,10 @@ caja_property_browser_update_contents (CajaPropertyBrowser *property_browser) gtk_widget_show (property_browser->details->content_frame); gtk_scrolled_window_set_policy (GTK_SCROLLED_WINDOW (property_browser->details->content_frame), GTK_POLICY_NEVER, GTK_POLICY_AUTOMATIC); +#if GTK_CHECK_VERSION (3, 16, 0) + gtk_scrolled_window_set_overlay_scrolling (GTK_SCROLLED_WINDOW (property_browser->details->content_frame), + FALSE); +#endif /* allocate a table to hold the content widgets */ property_browser->details->content_table = eel_image_table_new (TRUE); -- cgit v1.2.1