Emmanuele Bassi f25cdf066c [actor] Allow unsetting width and height separately
It is possible to unset the size of an actor specified with set_width()
and set_height() by using:

  clutter_actor_set_size (actor, -1, -1);

Which works by unsetting the :min-*-set and the :natural-*-set properties.

Calling set_width(-1) and set_height(-1) separately, though, doesn't work
thus implicitly breaking the assumption that set_size() is nothing more
than set_width()+set_height(). This was obviously due to the face that
pre-1.0 set_width() and set_height() took an unsigned integer as an
argument.
2009-08-13 16:13:07 +01:00
..
2009-08-11 14:19:24 +01:00
2009-08-11 14:19:24 +01:00
2009-08-11 13:27:25 +01:00
2009-01-20 18:47:50 +00:00
2009-07-10 11:38:42 +01:00
2009-07-10 11:38:42 +01:00
2009-03-13 14:29:27 +00:00