mirror of
https://github.com/brl/mutter.git
synced 2024-11-28 11:00:54 -05:00
clutter/timeline: Add running timeline to frameclock if it changes
It's intended that timelines can change frame clock while running; but up until now it'd only add itself if the frame clock was set when started. https://gitlab.gnome.org/GNOME/mutter/-/merge_requests/1285
This commit is contained in:
parent
f31a7acab5
commit
9b054f4a1b
@ -2523,8 +2523,14 @@ clutter_timeline_set_frame_clock (ClutterTimeline *timeline,
|
|||||||
if (priv->frame_clock == frame_clock)
|
if (priv->frame_clock == frame_clock)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
|
if (priv->frame_clock && priv->is_playing)
|
||||||
|
remove_timeline (timeline);
|
||||||
|
|
||||||
g_set_object (&priv->frame_clock, frame_clock);
|
g_set_object (&priv->frame_clock, frame_clock);
|
||||||
|
|
||||||
g_object_notify_by_pspec (G_OBJECT (timeline),
|
g_object_notify_by_pspec (G_OBJECT (timeline),
|
||||||
obj_props[PROP_FRAME_CLOCK]);
|
obj_props[PROP_FRAME_CLOCK]);
|
||||||
|
|
||||||
|
if (priv->is_playing)
|
||||||
|
add_timeline (timeline);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user