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:
Matthew Allum 2006-12-13 09:44:05 +00:00
parent 10fbfb1659
commit 77f421a294
2 changed files with 7 additions and 2 deletions

View File

@ -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

View File

@ -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));
/**