diff options
author | Matthias Clasen <mclasen@redhat.com> | 2010-02-23 12:49:51 -0500 |
---|---|---|
committer | Matthias Clasen <mclasen@redhat.com> | 2010-02-23 12:51:45 -0500 |
commit | cb184bed8c1f257fd9692b39abc95c5e544344a7 (patch) | |
tree | 0f7d4efec17c40a52d2ab34c2ea6bc08037c4d8a /gdk/directfb | |
parent | 1e381138f37fed8a479ef59c888e91a17f7ee857 (diff) | |
download | gtk+-cb184bed8c1f257fd9692b39abc95c5e544344a7.tar.gz |
Fix gdk_windowing_window_at_pointer in the directfb backend
Patch by Hiroyuki Ikezoe, see bug 604799.
Diffstat (limited to 'gdk/directfb')
-rw-r--r-- | gdk/directfb/gdkwindow-directfb.c | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/gdk/directfb/gdkwindow-directfb.c b/gdk/directfb/gdkwindow-directfb.c index 1690394471..99419f4feb 100644 --- a/gdk/directfb/gdkwindow-directfb.c +++ b/gdk/directfb/gdkwindow-directfb.c @@ -2084,15 +2084,8 @@ _gdk_windowing_window_at_pointer (GdkDisplay *display, GdkWindow *retval; gint wx, wy; - if (!win_x || !win_y) gdk_directfb_mouse_get_info (&wx, &wy, NULL); - if (win_x) - wx = *win_x; - - if (win_y) - wy = *win_y; - retval = gdk_directfb_child_at (_gdk_parent_root, &wx, &wy); if (win_x) |