diff options
| author | Carl Hetherington <cth@carlh.net> | 2015-04-29 22:10:50 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2015-04-29 22:10:50 +0100 |
| commit | b4e9d90b9d83c952563ccabc435a5d4310ee4853 (patch) | |
| tree | 2eddd6bab831528fce9c93a57f09ae61a44fe69a /src/wx/timing_panel.cc | |
| parent | d43aadb0bbb5cbdebbc5c95cb3065ed0aa49296a (diff) | |
Hand-apply b737b25e10a4bcfb8cb645e95a089192347b4805 from master; more deflickering.
Diffstat (limited to 'src/wx/timing_panel.cc')
| -rw-r--r-- | src/wx/timing_panel.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/wx/timing_panel.cc b/src/wx/timing_panel.cc index 55c53e79d..cafb06dfc 100644 --- a/src/wx/timing_panel.cc +++ b/src/wx/timing_panel.cc @@ -247,10 +247,10 @@ TimingPanel::film_content_changed (int property) } } if (check.size() == 1) { - _video_frame_rate->SetValue (std_to_wx (raw_convert<string> (vc->video_frame_rate (), 5))); + checked_set (_video_frame_rate, raw_convert<string> (vc->video_frame_rate (), 5)); _video_frame_rate->Enable (true); } else { - _video_frame_rate->SetValue (""); + checked_set (_video_frame_rate, wxT ("")); _video_frame_rate->Enable (false); } } |
