Bug 529841 – incorrect position in directfb

svn path=/trunk/; revision=20044
This commit is contained in:
Michael David Emmel
2008-04-25 17:50:43 +00:00
parent 60f33a23b6
commit 23689688bc
2 changed files with 7 additions and 1 deletions

View File

@ -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;
}