From c143105ae928c6a75a6d8ba9e70fa0472f4b4232 Mon Sep 17 00:00:00 2001 From: Kristian Rietveld Date: Tue, 12 Oct 2010 18:25:22 +0200 Subject: [PATCH] Fix scrolled window policy so the size allocation does not "flap" --- gtk/tests/treeview-scrolling.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/gtk/tests/treeview-scrolling.c b/gtk/tests/treeview-scrolling.c index 19c5dc2ae3..90f8fea492 100644 --- a/gtk/tests/treeview-scrolling.c +++ b/gtk/tests/treeview-scrolling.c @@ -110,6 +110,9 @@ scroll_fixture_setup (ScrollFixture *fixture, fixture->window = gtk_window_new (GTK_WINDOW_TOPLEVEL); sw = gtk_scrolled_window_new (NULL, NULL); + gtk_scrolled_window_set_policy (GTK_SCROLLED_WINDOW (sw), + GTK_POLICY_NEVER, + GTK_POLICY_ALWAYS); gtk_container_add (GTK_CONTAINER (fixture->window), sw); fixture->tree_view = gtk_tree_view_new_with_model (model);