2006-12-13 Matthew Allum <mallum@openedhand.com>
* clutter/clutter-actor.c: (clutter_actor_class_init): Allow actor x,y props to be negative.
This commit is contained in:
parent
10fbfb1659
commit
77f421a294
@ -1,3 +1,8 @@
|
||||
2006-12-13 Matthew Allum <mallum@openedhand.com>
|
||||
|
||||
* clutter/clutter-actor.c: (clutter_actor_class_init):
|
||||
Allow actor x,y props to be negative.
|
||||
|
||||
2006-12-12 Emmanuele Bassi <ebassi@openedhand.com>
|
||||
|
||||
Rework part of the show/hide machinery. Allow groups sub-classes
|
||||
|
@ -645,7 +645,7 @@ clutter_actor_class_init (ClutterActorClass *klass)
|
||||
g_param_spec_int ("x",
|
||||
"X co-ord",
|
||||
"X co-ord of actor",
|
||||
0, G_MAXINT,
|
||||
-G_MAXINT, G_MAXINT,
|
||||
0,
|
||||
CLUTTER_PARAM_READWRITE));
|
||||
/**
|
||||
@ -658,7 +658,7 @@ clutter_actor_class_init (ClutterActorClass *klass)
|
||||
g_param_spec_int ("y",
|
||||
"Y co-ord",
|
||||
"Y co-ord of actor",
|
||||
0, G_MAXINT,
|
||||
-G_MAXINT, G_MAXINT,
|
||||
0,
|
||||
CLUTTER_PARAM_READWRITE));
|
||||
/**
|
||||
|
Loading…
Reference in New Issue
Block a user