From 62f6775d4f447ee84df8bd7c2801cd018fcbb083 Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Thu, 11 Jan 2024 11:28:24 +0100 Subject: Reduce minimum "non-standard" ISDCF part name length to 1. Otherwise on macOS (at least) you can't type in any numbers, seemingly because it checks on each keypress so e.g. you clear it, enter 1 and a bell rings because 1 is too small. It's fine on Linux (a too-small number is corrected when you press enter). --- src/wx/full_config_dialog.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/wx/full_config_dialog.cc b/src/wx/full_config_dialog.cc index 175d78730..2d4679611 100644 --- a/src/wx/full_config_dialog.cc +++ b/src/wx/full_config_dialog.cc @@ -1562,7 +1562,7 @@ private: _allow_96khz_audio->bind(&NonStandardPage::allow_96khz_audio_changed, this); _use_all_audio_channels->bind(&NonStandardPage::use_all_channels_changed, this); _allow_smpte_bv20->bind(&NonStandardPage::allow_smpte_bv20_changed, this); - _isdcf_name_part_length->SetRange(14, 256); + _isdcf_name_part_length->SetRange(1, 256); _isdcf_name_part_length->Bind(wxEVT_SPINCTRL, boost::bind(&NonStandardPage::isdcf_name_part_length_changed, this)); } -- cgit v1.2.3