summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2013-12-27 14:28:08 +0000
committerCarl Hetherington <cth@carlh.net>2013-12-27 14:28:08 +0000
commita2107a86ee1e5170ab77a04e524bbb5dd94b20c5 (patch)
treed3ca4ef743d61952900fbd78a3efdac4865b2106
parent741af11e934300eef55c1e681653842c60bf564b (diff)
Fix non-update of video information on changing DCP resolution (#299).
-rw-r--r--ChangeLog2
-rw-r--r--src/wx/video_panel.cc1
2 files changed, 3 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 6ccf0ee32..7feabc198 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -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: