mirror of
https://github.com/brl/mutter.git
synced 2025-03-03 11:58:09 +00:00
2007-10-25 Emmanuele Bassi <ebassi@openedhand.com>
* clutter/clutter-behaviour-path.c: Reverse the list of parsed knots, to preserve the real ordering after prepending them (thanks to Øyvind for spotting this). * clutter/clutter-behaviour-bspline.c: Ditto as above.
This commit is contained in:
parent
5a260b7ac3
commit
736bbfb713
@ -1,3 +1,11 @@
|
|||||||
|
2007-10-25 Emmanuele Bassi <ebassi@openedhand.com>
|
||||||
|
|
||||||
|
* clutter/clutter-behaviour-path.c: Reverse the list of
|
||||||
|
parsed knots, to preserve the real ordering after prepending
|
||||||
|
them (thanks to Øyvind for spotting this).
|
||||||
|
|
||||||
|
* clutter/clutter-behaviour-bspline.c: Ditto as above.
|
||||||
|
|
||||||
2007-10-25 Emmanuele Bassi <ebassi@openedhand.com>
|
2007-10-25 Emmanuele Bassi <ebassi@openedhand.com>
|
||||||
|
|
||||||
* clutter/clutter-script-parser.c: Unset the GValue when
|
* clutter/clutter-script-parser.c: Unset the GValue when
|
||||||
|
@ -699,7 +699,7 @@ clutter_behaviour_bspline_parse_custom_node (ClutterScriptable *scriptable,
|
|||||||
}
|
}
|
||||||
|
|
||||||
g_value_init (value, G_TYPE_POINTER);
|
g_value_init (value, G_TYPE_POINTER);
|
||||||
g_value_set_pointer (value, knots);
|
g_value_set_pointer (value, g_slist_reverse (knots));
|
||||||
|
|
||||||
return TRUE;
|
return TRUE;
|
||||||
}
|
}
|
||||||
|
@ -395,7 +395,7 @@ clutter_behaviour_path_parse_custom_node (ClutterScriptable *scriptable,
|
|||||||
}
|
}
|
||||||
|
|
||||||
g_value_init (value, G_TYPE_POINTER);
|
g_value_init (value, G_TYPE_POINTER);
|
||||||
g_value_set_pointer (value, knots);
|
g_value_set_pointer (value, g_slist_reverse (knots));
|
||||||
|
|
||||||
return TRUE;
|
return TRUE;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user