| 559 | } |
| 560 | |
| 561 | static void |
| 562 | set_preview_image_static (signal_user_data_t *ud, GdkPixbuf * pix) |
| 563 | { |
| 564 | if (pix && !live_preview_is_ready()) |
| 565 | { |
| 566 | GtkWidget *widget = ghb_builder_widget("summary_preview_image"); |
| 567 | gtk_picture_set_pixbuf(GTK_PICTURE(widget), pix); |
| 568 | widget = ghb_builder_widget("preview_image"); |
| 569 | gtk_picture_set_pixbuf(GTK_PICTURE(widget), pix); |
| 570 | } |
| 571 | } |
| 572 | |
| 573 | G_MODULE_EXPORT void |
| 574 | preview_last_cb (GtkButton *button, GtkScale *preview_frame) |
no test coverage detected