summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLionel Landwerlin <llandwerlin@gmail.com>2013-09-26 16:49:45 +0100
committerLionel Landwerlin <llandwerlin@gmail.com>2013-09-26 22:33:07 +0100
commit067fcc3690b0a354bf0a7b0692aab47fb68a0817 (patch)
tree897dd75e1673c6c4a0f1298f8fe30c32be285a07
parente87c470220582b5aec63d83dea9c34447a577f7a (diff)
downloadclutter-067fcc3690b0a354bf0a7b0692aab47fb68a0817.tar.gz
drag-action: fix warning when setting drag-handle to null
https://bugzilla.gnome.org/show_bug.cgi?id=708850
-rw-r--r--clutter/clutter-drag-action.c16
1 files changed, 10 insertions, 6 deletions
diff --git a/clutter/clutter-drag-action.c b/clutter/clutter-drag-action.c
index e88de02cb..e450046e8 100644
--- a/clutter/clutter-drag-action.c
+++ b/clutter/clutter-drag-action.c
@@ -1138,14 +1138,18 @@ clutter_drag_action_set_drag_handle (ClutterDragAction *action,
priv->transformed_press_x = priv->press_x;
priv->transformed_press_y = priv->press_y;
- clutter_actor_transform_stage_point (handle, priv->press_x, priv->press_y,
- &priv->transformed_press_x,
- &priv->transformed_press_y);
if (priv->drag_handle != NULL)
- g_signal_connect (priv->drag_handle, "destroy",
- G_CALLBACK (on_drag_handle_destroy),
- action);
+ {
+ clutter_actor_transform_stage_point (priv->drag_handle,
+ priv->press_x,
+ priv->press_y,
+ &priv->transformed_press_x,
+ &priv->transformed_press_y);
+ g_signal_connect (priv->drag_handle, "destroy",
+ G_CALLBACK (on_drag_handle_destroy),
+ action);
+ }
g_object_notify_by_pspec (G_OBJECT (action), drag_props[PROP_DRAG_HANDLE]);
}