]> Pileus Git - ~andy/gtk/commitdiff
Bug 529841 – incorrect position in directfb
authorMichael David Emmel <memmel@src.gnome.org>
Fri, 25 Apr 2008 17:50:43 +0000 (17:50 +0000)
committerMichael David Emmel <memmel@src.gnome.org>
Fri, 25 Apr 2008 17:50:43 +0000 (17:50 +0000)
svn path=/trunk/; revision=20044

ChangeLog
gdk/directfb/gdkwindow-directfb.c

index 2ad6f9474154fd89e37fc07fe0b1392721079de2..f619a630705c3612b412101908cb6d8898719823 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -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>
index c74034aa23f6152a01886843d7214e2247a34f19..a3962c6d3381a1fe43505601db1589c6b087d398 100644 (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;
 }