| 645 | } |
| 646 | |
| 647 | void |
| 648 | ghb_reset_preview_image(signal_user_data_t *ud) |
| 649 | { |
| 650 | init_preview_image(ud); |
| 651 | if (ud->preview->width > 0 && ud->preview->height > 0) |
| 652 | { |
| 653 | preview_set_render_size(ud, ud->preview->width, ud->preview->height); |
| 654 | |
| 655 | // Display the preview |
| 656 | set_preview_image_static(ud, ud->preview->pix); |
| 657 | } |
| 658 | } |
| 659 | |
| 660 | G_MODULE_EXPORT void |
| 661 | show_preview_action_cb(GSimpleAction *action, GVariant *value, |
no test coverage detected