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

@ -1,3 +1,9 @@
2008-04-25 Michael Emmel <mike.emmel@gmail.com>
Bug 529841 incorrect position in directfb
* gdk/directfb/gdkwindow-directfb.c: fix y = abs_x
2008-04-25 Johan Dahlin <jdahlin@async.com.br>
* gtk/gtkwidget.h: include <atk/atk.h> instead of <atk/atkobject.h>

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