From: Carl Hetherington Date: Sun, 19 Sep 2021 20:19:58 +0000 (+0200) Subject: Fix failure to reset state to "to fit DCP" properly (#2081). X-Git-Tag: v2.15.162~12 X-Git-Url: https://main.carlh.net/gitweb/?p=dcpomatic.git;a=commitdiff_plain;h=0b34912d35e5a64a23b89055257d898f245ea6db Fix failure to reset state to "to fit DCP" properly (#2081). --- diff --git a/src/wx/video_panel.cc b/src/wx/video_panel.cc index c7330ef59..33961ea1d 100644 --- a/src/wx/video_panel.cc +++ b/src/wx/video_panel.cc @@ -700,6 +700,7 @@ VideoPanel::scale_fit_clicked () { for (auto i: _parent->selected_video()) { i->video->set_custom_ratio (optional()); + i->video->set_custom_size (optional()); } }