diff options
| author | Carl Hetherington <cth@carlh.net> | 2013-12-27 14:28:08 +0000 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2013-12-27 14:28:08 +0000 |
| commit | a2107a86ee1e5170ab77a04e524bbb5dd94b20c5 (patch) | |
| tree | d3ca4ef743d61952900fbd78a3efdac4865b2106 | |
| parent | 741af11e934300eef55c1e681653842c60bf564b (diff) | |
Fix non-update of video information on changing DCP resolution (#299).
| -rw-r--r-- | ChangeLog | 2 | ||||
| -rw-r--r-- | src/wx/video_panel.cc | 1 |
2 files changed, 3 insertions, 0 deletions
@@ -1,5 +1,7 @@ 2013-12-27 Carl Hetherington <cth@carlh.net> + * Fix non-update of video information on changing DCP resolution (#299). + * Version 1.52 released. 2013-12-27 Carl Hetherington <cth@carlh.net> diff --git a/src/wx/video_panel.cc b/src/wx/video_panel.cc index 0dbee5420..90b4adfe3 100644 --- a/src/wx/video_panel.cc +++ b/src/wx/video_panel.cc @@ -211,6 +211,7 @@ VideoPanel::film_changed (Film::Property property) switch (property) { case Film::CONTAINER: case Film::VIDEO_FRAME_RATE: + case Film::RESOLUTION: setup_description (); break; default: |
