From 8736b53d7cc6fd2b53649c076ef09cb69f9b37d6 Mon Sep 17 00:00:00 2001 From: Emmanuele Bassi Date: Wed, 9 Dec 2009 00:01:50 +0000 Subject: [PATCH] device: Do not overwrite the stage for an InputDevice The Stage field of an InputDevice is set by the backend, whenever the pointer enters or leaves the Stage. The Stage should not overwrite the stage field for every event it processes. --- clutter/clutter-stage.c | 1 - 1 file changed, 1 deletion(-) diff --git a/clutter/clutter-stage.c b/clutter/clutter-stage.c index 4d3d13774..3c8ea625c 100644 --- a/clutter/clutter-stage.c +++ b/clutter/clutter-stage.c @@ -487,7 +487,6 @@ _clutter_stage_queue_event (ClutterStage *stage, _clutter_input_device_set_coords (device, event_x, event_y); _clutter_input_device_set_state (device, event_state); _clutter_input_device_set_time (device, event_time); - _clutter_input_device_set_stage (device, stage); } }