Fix typo.

This commit is contained in:
Jeff Young 2018-08-29 22:45:45 +01:00
parent b562ecc5b5
commit 9125d7fdb6
1 changed files with 1 additions and 1 deletions

View File

@ -328,7 +328,7 @@ bool DIALOG_TRACK_VIA_PROPERTIES::confirmPadChange( const std::vector<D_PAD*>& c
KIDIALOG dlg( this, msg, _( "Confirmation" ), wxOK | wxCANCEL | wxICON_WARNING ); KIDIALOG dlg( this, msg, _( "Confirmation" ), wxOK | wxCANCEL | wxICON_WARNING );
dlg.SetOKLabel( _( "Continue" ) ); dlg.SetOKLabel( _( "Continue" ) );
dlg.DoNotShowCheckbox( true ); dlg.DoNotShowCheckbox();
return dlg.ShowModal() == wxID_OK; return dlg.ShowModal() == wxID_OK;
} }