Emmanuele Bassi b21cb29479 property-transition: Verify the interval on compute_value()
By checking if the interval is valid inside compute_value() we can catch
the cases where the interval values of a PropertyTransition are set
after the transition has been added to an Animatable instance - i.e. the
following code:

  let transition = new Clutter.PropertyTransition();
  transition.set_property_name('opacity');
  actor.add_transition('opacityAnim', transition);
  transition.set_to_value(0);

should be equivalent to:

  let transition = new Clutter.PropertyTransition();
  transition.set_property_name('opacity');
  transition.set_to_value(0);
  actor.add_transition('opacityAnim', transition);

instead of emitting a warning.
2012-06-08 17:33:30 +01:00
..
2012-05-03 11:34:57 +01:00
2011-11-10 19:05:39 +01:00
2012-05-21 23:01:23 +08:00
2012-04-27 12:30:48 +01:00
2012-02-23 12:01:11 +00:00
2012-06-08 14:33:00 +01:00
2012-06-08 14:33:00 +01:00
2012-04-27 12:30:48 +01:00
2012-04-27 12:28:49 +01:00
2012-04-27 12:30:50 +01:00
2012-04-27 12:30:47 +01:00
2012-04-27 12:30:47 +01:00
2012-04-27 12:30:48 +01:00
2012-06-08 14:33:00 +01:00
2012-06-05 12:28:25 +02:00
2012-06-05 12:28:25 +02:00
2012-01-16 23:35:16 +00:00
2012-04-30 17:17:41 +01:00
2012-04-30 17:17:41 +01:00
2012-04-27 12:30:50 +01:00
2012-04-27 12:30:48 +01:00
2012-04-27 12:30:48 +01:00
2012-04-27 12:30:50 +01:00
2012-04-30 17:17:41 +01:00
2012-02-23 17:21:57 +00:00
2012-04-30 17:17:41 +01:00
2012-04-27 12:30:50 +01:00
2012-04-27 12:30:48 +01:00
2012-04-30 17:17:41 +01:00
2012-06-05 12:28:25 +02:00
2012-06-05 12:28:25 +02:00