From 7b68bdb8316fc1bb96c4a5ad16c1885506131d22 Mon Sep 17 00:00:00 2001 From: Matt Watson Date: Tue, 22 Mar 2016 01:04:38 -0700 Subject: [PATCH] animatedstyle: just ref current style if timestamp the same --- gtk/gtkcssanimatedstyle.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gtk/gtkcssanimatedstyle.c b/gtk/gtkcssanimatedstyle.c index 04337e54c2..9847449f08 100644 --- a/gtk/gtkcssanimatedstyle.c +++ b/gtk/gtkcssanimatedstyle.c @@ -464,7 +464,7 @@ gtk_css_animated_style_new_advance (GtkCssAnimatedStyle *source, gtk_internal_return_val_if_fail (GTK_IS_CSS_ANIMATED_STYLE (source), NULL); gtk_internal_return_val_if_fail (GTK_IS_CSS_STYLE (base), NULL); - if (timestamp == 0) + if (timestamp == 0 || timestamp == source->current_time) return g_object_ref (source->style); gtk_internal_return_val_if_fail (timestamp > source->current_time, NULL); -- 2.30.2