Don't crash the view when no image is present
This commit is contained in:
parent
8e2958051d
commit
4b306b7c93
|
@ -504,7 +504,7 @@ start_animating(FastivView *self)
|
|||
stop_animating(self);
|
||||
|
||||
GdkFrameClock *clock = gtk_widget_get_frame_clock(GTK_WIDGET(self));
|
||||
if (!clock ||
|
||||
if (!clock || !self->image ||
|
||||
!cairo_surface_get_user_data(self->page, &fastiv_io_key_frame_next))
|
||||
return;
|
||||
|
||||
|
|
Loading…
Reference in New Issue