diff --git a/clutter/clutter/clutter-frame-clock.c b/clutter/clutter/clutter-frame-clock.c index 3f3b9d9d8..355a2c00f 100644 --- a/clutter/clutter/clutter-frame-clock.c +++ b/clutter/clutter/clutter-frame-clock.c @@ -197,7 +197,8 @@ clutter_frame_clock_notify_presented (ClutterFrameClock *frame_clock, frame_clock->last_presentation_time_us = g_get_monotonic_time (); } - frame_clock->refresh_rate = frame_info->refresh_rate; + if (frame_info->refresh_rate > 1) + frame_clock->refresh_rate = frame_info->refresh_rate; switch (frame_clock->state) {