From c2c126276635e5028a3e9aa71fa3fac9571a0507 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Timm=20B=C3=A4der?= Date: Wed, 28 Mar 2018 16:24:03 +0200 Subject: [PATCH] testgtk: don't set a focus adjustment on a box That will make the focus adjustment code in gtkcontainer.c scroll to the wrong coordinates. --- tests/testgtk.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/tests/testgtk.c b/tests/testgtk.c index b4982e02b2..94cb785d02 100644 --- a/tests/testgtk.c +++ b/tests/testgtk.c @@ -7677,8 +7677,6 @@ create_main_window (void) box2 = gtk_box_new (GTK_ORIENTATION_VERTICAL, 0); gtk_container_add (GTK_CONTAINER (scrolled_window), box2); - gtk_container_set_focus_vadjustment (GTK_CONTAINER (box2), - gtk_scrolled_window_get_vadjustment (GTK_SCROLLED_WINDOW (scrolled_window))); gtk_widget_show (box2); for (i = 0; i < nbuttons; i++)