resolved small bug in the xml cred repo editor page validation

This commit is contained in:
David Sparer
2017-02-11 11:03:30 -07:00
parent cac1df7a66
commit d7c176d4fd

View File

@@ -65,7 +65,7 @@ namespace mRemoteNG.UI.Forms.CredentialManagerPages.CredentialRepositoryEditorPa
private bool AllRequiredFieldsFilledOut()
{
return newPasswordBoxes.PasswordsMatch && !string.IsNullOrEmpty(selectFilePathDialog.FileName);
return newPasswordBoxes.PasswordsMatch && !string.IsNullOrEmpty(_repositoryConfig.Source);
}
private void buttonBack_Click(object sender, EventArgs e)