summaryrefslogtreecommitdiff
path: root/gdk
diff options
context:
space:
mode:
authorMichael David Emmel <memmel@src.gnome.org>2008-04-25 17:50:43 +0000
committerMichael David Emmel <memmel@src.gnome.org>2008-04-25 17:50:43 +0000
commit23689688bc2acf0c748f25ca71fa1ada8127e999 (patch)
treefd5eed40111e7345201a3aacaf834c65d690c904 /gdk
parent60f33a23b6aeeb0304aa080e2fc51806bf72695c (diff)
downloadgtk+-23689688bc2acf0c748f25ca71fa1ada8127e999.tar.gz
Bug 529841 – incorrect position in directfb
svn path=/trunk/; revision=20044
Diffstat (limited to 'gdk')
-rw-r--r--gdk/directfb/gdkwindow-directfb.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gdk/directfb/gdkwindow-directfb.c b/gdk/directfb/gdkwindow-directfb.c
index c74034aa23..a3962c6d33 100644
--- a/gdk/directfb/gdkwindow-directfb.c
+++ b/gdk/directfb/gdkwindow-directfb.c
@@ -2684,7 +2684,7 @@ gdk_window_get_frame_extents (GdkWindow *window,
impl = GDK_DRAWABLE_IMPL_DIRECTFB (private->impl);
rect->x = impl->abs_x;
- rect->y = impl->abs_x;
+ rect->y = impl->abs_y;
rect->width = impl->width;
rect->height = impl->height;
}