diff options
| author | Carl Hetherington <cth@carlh.net> | 2022-10-15 01:58:54 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2022-10-15 23:24:56 +0200 |
| commit | ae92bd2fbd2a74d14e2635003554aa76016ab425 (patch) | |
| tree | 404bdba42eba94a9bb377c25b6c58e5072eacad2 /src/wx/content_advanced_dialog.cc | |
| parent | 8df0d52eb09043ac9f156f2886123a4888911d57 (diff) | |
Make video frame rate option respect OK/Cancel.
Diffstat (limited to 'src/wx/content_advanced_dialog.cc')
| -rw-r--r-- | src/wx/content_advanced_dialog.cc | 17 |
1 files changed, 11 insertions, 6 deletions
diff --git a/src/wx/content_advanced_dialog.cc b/src/wx/content_advanced_dialog.cc index 21cba5e8a..ba2c3f43b 100644 --- a/src/wx/content_advanced_dialog.cc +++ b/src/wx/content_advanced_dialog.cc @@ -197,15 +197,20 @@ ContentAdvancedDialog::filters_changed (vector<Filter const *> filters) } -void -ContentAdvancedDialog::set_video_frame_rate () +optional<double> +ContentAdvancedDialog::video_frame_rate() const { - if (_video_frame_rate->GetValue() != wxT("")) { - _content->set_video_frame_rate (locale_convert<double>(wx_to_std(_video_frame_rate->GetValue()))); - } else { - _content->unset_video_frame_rate (); + if (_video_frame_rate->GetValue() == wxT("")) { + return {}; } + return locale_convert<double>(wx_to_std(_video_frame_rate->GetValue())); +} + + +void +ContentAdvancedDialog::set_video_frame_rate () +{ _set_video_frame_rate->Enable (false); } |
