(ConvertMedia): pressing 'Enter' in the text box concludes dialog.

This commit is contained in:
morkt
2017-01-18 04:51:41 +04:00
parent 4edd06e7d9
commit 7b1f237448
2 changed files with 6 additions and 1 deletions

View File

@@ -48,5 +48,10 @@ namespace GARbro.GUI
{
this.DialogResult = true;
}
private void acb_OnEnterKeyDown (object sender, KeyEventArgs e)
{
this.DialogResult = true;
}
}
}