summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2014-01-05 22:58:01 +0000
committerCarl Hetherington <cth@carlh.net>2014-01-05 22:58:01 +0000
commit22e572f6aacce6f5f5a9a57182481fae0d87ea20 (patch)
tree823af48b21c52d103b627eeb304ac8644541396e /src
parentf539acb6bfc024f01561a403ca60614a152356ef (diff)
Possibly fix incorrect character encoding in the frame rate description.
Diffstat (limited to 'src')
-rw-r--r--src/wx/video_panel.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wx/video_panel.cc b/src/wx/video_panel.cc
index 90b4adfe3..8854f7e7b 100644
--- a/src/wx/video_panel.cc
+++ b/src/wx/video_panel.cc
@@ -335,7 +335,7 @@ VideoPanel::setup_description ()
d << wxString::Format (_("Content frame rate %.4f\n"), vcs->video_frame_rate ());
++lines;
FrameRateConversion frc (vcs->video_frame_rate(), _editor->film()->video_frame_rate ());
- d << frc.description << "\n";
+ d << std_to_wx (frc.description) << "\n";
++lines;
for (int i = lines; i < 6; ++i) {