summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBenjamin Otte <otte@redhat.com>2012-03-03 21:10:46 +0100
committerBenjamin Otte <otte@redhat.com>2012-03-03 21:12:19 +0100
commit4b1e2b08a7060f34fc350be97eac41b35acda361 (patch)
tree10f84a1d888f58272e4dc1b6c2b66595e4f394bf
parent3f6592f60fd15fb353fc84600caefba3054dc892 (diff)
downloadgtk+-4b1e2b08a7060f34fc350be97eac41b35acda361.tar.gz
iconview: Fix autoscroll
... when the iconview is not the only child in it's parent GdkWindow.
-rw-r--r--gtk/gtkiconview.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/gtk/gtkiconview.c b/gtk/gtkiconview.c
index 54b3f3be84..190fec8f70 100644
--- a/gtk/gtkiconview.c
+++ b/gtk/gtkiconview.c
@@ -6631,21 +6631,21 @@ remove_scroll_timeout (GtkIconView *icon_view)
static void
gtk_icon_view_autoscroll (GtkIconView *icon_view)
{
- gint px, py, x, y, width, height;
+ gint px, py, width, height;
gint hoffset, voffset;
gfloat value;
gdk_window_get_pointer (GTK_WIDGET (icon_view)->window, &px, &py, NULL);
- gdk_window_get_geometry (GTK_WIDGET (icon_view)->window, &x, &y, &width, &height, NULL);
+ gdk_window_get_geometry (GTK_WIDGET (icon_view)->window, NULL, NULL, &width, &height, NULL);
/* see if we are near the edge. */
- voffset = py - (y + 2 * SCROLL_EDGE_SIZE);
+ voffset = py - 2 * SCROLL_EDGE_SIZE;
if (voffset > 0)
- voffset = MAX (py - (y + height - 2 * SCROLL_EDGE_SIZE), 0);
+ voffset = MAX (py - (height - 2 * SCROLL_EDGE_SIZE), 0);
- hoffset = px - (x + 2 * SCROLL_EDGE_SIZE);
+ hoffset = px - 2 * SCROLL_EDGE_SIZE;
if (hoffset > 0)
- hoffset = MAX (px - (x + width - 2 * SCROLL_EDGE_SIZE), 0);
+ hoffset = MAX (px - (width - 2 * SCROLL_EDGE_SIZE), 0);
if (voffset != 0)
{