copy the event axes as well.

2003-02-15  Larry Ewing  <lewing@ximian.com>

        * gdk/gdkevents.c (gdk_event_copy): copy the event axes as well.
This commit is contained in:
Larry Ewing 2003-02-18 20:14:56 +00:00 committed by Larry Ewing
parent 588a0dd2b9
commit 8519917be6
6 changed files with 34 additions and 0 deletions

View File

@ -1,3 +1,7 @@
2003-02-15 Larry Ewing <lewing@ximian.com>
* gdk/gdkevents.c (gdk_event_copy): copy the event axes as well.
2003-02-17 Mohammad DAMT <mdamt@bisnisweb.com>
* po/id.po: Added Indonesian translation

View File

@ -1,3 +1,7 @@
2003-02-15 Larry Ewing <lewing@ximian.com>
* gdk/gdkevents.c (gdk_event_copy): copy the event axes as well.
2003-02-17 Mohammad DAMT <mdamt@bisnisweb.com>
* po/id.po: Added Indonesian translation

View File

@ -1,3 +1,7 @@
2003-02-15 Larry Ewing <lewing@ximian.com>
* gdk/gdkevents.c (gdk_event_copy): copy the event axes as well.
2003-02-17 Mohammad DAMT <mdamt@bisnisweb.com>
* po/id.po: Added Indonesian translation

View File

@ -1,3 +1,7 @@
2003-02-15 Larry Ewing <lewing@ximian.com>
* gdk/gdkevents.c (gdk_event_copy): copy the event axes as well.
2003-02-17 Mohammad DAMT <mdamt@bisnisweb.com>
* po/id.po: Added Indonesian translation

View File

@ -1,3 +1,7 @@
2003-02-15 Larry Ewing <lewing@ximian.com>
* gdk/gdkevents.c (gdk_event_copy): copy the event axes as well.
2003-02-17 Mohammad DAMT <mdamt@bisnisweb.com>
* po/id.po: Added Indonesian translation

View File

@ -410,6 +410,20 @@ gdk_event_copy (GdkEvent *event)
case GDK_SETTING:
new_event->setting.name = g_strdup (new_event->setting.name);
break;
case GDK_BUTTON_PRESS:
case GDK_BUTTON_RELEASE:
if (event->button.axes)
new_event->button.axes = g_memdup (event->button.axes,
sizeof (gdouble) * event->button.device->num_axes);
break;
case GDK_MOTION_NOTIFY:
if (event->motion.axes)
new_event->motion.axes = g_memdup (event->motion.axes,
sizeof (gdouble) * event->motion.device->num_axes);
break;
default:
break;