mirror of
https://github.com/brl/mutter.git
synced 2025-01-22 09:29:25 +00:00
2007-09-27 Matthew Allum <mallum@openedhand.com>
* tests/test-scale.c: Fix out of about array addressing (#522, Tommi Komulainen)
This commit is contained in:
parent
ff81b9fcd2
commit
7d7d235729
@ -1,3 +1,8 @@
|
||||
2007-09-27 Matthew Allum <mallum@openedhand.com>
|
||||
|
||||
* tests/test-scale.c:
|
||||
Fix out of about array addressing (#522, Tommi Komulainen)
|
||||
|
||||
2007-09-27 Matthew Allum <mallum@openedhand.com>
|
||||
|
||||
* clutter/clutter-clone-texture.c:
|
||||
|
@ -22,7 +22,7 @@ on_timeline_completed (ClutterTimeline *cluttertimeline,
|
||||
{
|
||||
ClutterBehaviourScale *behave = CLUTTER_BEHAVIOUR_SCALE(data);
|
||||
|
||||
if (++gindex > G_N_ELEMENTS(gravitys))
|
||||
if (++gindex >= G_N_ELEMENTS(gravitys))
|
||||
gindex = 0;
|
||||
|
||||
g_object_set (behave, "scale-gravity", gravitys[gindex], NULL);
|
||||
|
Loading…
x
Reference in New Issue
Block a user