Possibly fix incorrect character encoding in the frame rate description.
authorCarl Hetherington <cth@carlh.net>
Sun, 5 Jan 2014 22:58:01 +0000 (22:58 +0000)
committerCarl Hetherington <cth@carlh.net>
Sun, 5 Jan 2014 22:58:01 +0000 (22:58 +0000)
src/wx/video_panel.cc

index 90b4adfe396a716b157538903c2542217bc6cee4..8854f7e7b54441c5c2689b7b157d4f71c4089384 100644 (file)
@@ -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) {