Fix overzealous checking in 2798035f8

Checking for NULL fields prevents a useful dialog from being displayed
now that the exception is handled.
This commit is contained in:
Seth Hillbrand 2018-06-11 20:47:48 -07:00
parent 2798035f85
commit 4186626069
1 changed files with 0 additions and 3 deletions

View File

@ -154,9 +154,6 @@ bool DIALOG_SIM_SETTINGS::TransferDataFromWindow()
if( !m_dcStart2->Validate() || !m_dcStop2->Validate() || !m_dcIncr2->Validate() )
return false;
if( m_dcStart2->IsEmpty() || m_dcStop2->IsEmpty() || m_dcIncr2->IsEmpty() )
return false;
try
{
wxString dcSource = m_exporter->GetSpiceDevice( m_dcSource2->GetValue() );