mirror of
https://github.com/brl/mutter.git
synced 2024-11-23 00:20:42 -05:00
interval: Call g_object_set_property in set_custom_property()
Otherwise it would prevent potential subclasses of ClutterInterval from having own scriptable properties.
This commit is contained in:
parent
e56785501b
commit
354c3c7977
@ -518,6 +518,8 @@ clutter_interval_set_custom_property (ClutterScriptable *scriptable,
|
||||
clutter_interval_set_initial_value (self, value);
|
||||
else if (strcmp (name, "final") == 0)
|
||||
clutter_interval_set_final_value (self, value);
|
||||
else
|
||||
g_object_set_property (G_OBJECT (scriptable), name, value);
|
||||
}
|
||||
|
||||
static void
|
||||
|
Loading…
Reference in New Issue
Block a user