diff options
| author | Carl Hetherington <cth@carlh.net> | 2020-12-01 21:44:32 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2020-12-01 21:44:32 +0100 |
| commit | 7d5a2d5f585c1c8ed0e645d0190ed3d9fbe21490 (patch) | |
| tree | 81bf28ad9cd7232b430a6654cc8d5a4b0741690e /src | |
| parent | f7c43baf9b67505f04bb0954ab6e9e36f88efced (diff) | |
Limit video frame rate text control to numbers.
Diffstat (limited to 'src')
| -rw-r--r-- | src/wx/content_advanced_dialog.cc | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/wx/content_advanced_dialog.cc b/src/wx/content_advanced_dialog.cc index 9f2a45106..1726579ea 100644 --- a/src/wx/content_advanced_dialog.cc +++ b/src/wx/content_advanced_dialog.cc @@ -31,6 +31,9 @@ #include "lib/image_content.h" #include "lib/video_content.h" #include <wx/gbsizer.h> +DCPOMATIC_DISABLE_WARNINGS +#include <wx/propgrid/props.h> +DCPOMATIC_ENABLE_WARNINGS #include <boost/bind.hpp> @@ -77,7 +80,7 @@ ContentAdvancedDialog::ContentAdvancedDialog (wxWindow* parent, shared_ptr<Conte } else { video_frame_rate_label = add_label_to_sizer (sizer, this, _("Video frame rate that content was prepared for"), true, wxGBPosition(r, 0)); } - _video_frame_rate = new wxTextCtrl (this, wxID_ANY); + _video_frame_rate = new wxTextCtrl (this, wxID_ANY, wxT(""), wxDefaultPosition, wxDefaultSize, 0, wxNumericPropertyValidator(wxNumericPropertyValidator::Float)); sizer->Add (_video_frame_rate, wxGBPosition(r, 1)); _set_video_frame_rate = new Button (this, _("Set")); _set_video_frame_rate->Enable (false); |
