2006-12-13 Matthew Allum <mallum@openedhand.com>
authorMatthew Allum <mallum@openedhand.com>
Wed, 13 Dec 2006 09:44:05 +0000 (09:44 +0000)
committerMatthew Allum <mallum@openedhand.com>
Wed, 13 Dec 2006 09:44:05 +0000 (09:44 +0000)
        * clutter/clutter-actor.c: (clutter_actor_class_init):
        Allow actor x,y props to be negative.

ChangeLog
clutter/clutter-actor.c

index 300a783..4127405 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -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
index 89dba52..5424b86 100644 (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));
   /**