Skip to content

Commit

Permalink
Merge pull request #9 from DHancock/current
Browse files Browse the repository at this point in the history
Fix layout bug
  • Loading branch information
DHancock authored Oct 25, 2019
2 parents 84ae303 + 9fa16dd commit 28d27cd
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 21 deletions.
2 changes: 1 addition & 1 deletion FieldChooser.version
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
:
FieldChooser:1.1
FieldChooser:1.1.1
:
4 changes: 2 additions & 2 deletions Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.1")]
[assembly: AssemblyFileVersion("1.1")]
[assembly: AssemblyVersion("1.1.1")]
[assembly: AssemblyFileVersion("1.1.1")]
[assembly: NeutralResourcesLanguage("en")]

34 changes: 17 additions & 17 deletions Source/FieldChooserForm.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Source/FieldChooserForm.cs
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@ private bool LoadCharacterTextBox(int selectedIndex, TextBox textBox)
[SecurityPermission(SecurityAction.LinkDemand, Flags = SecurityPermissionFlag.UnmanagedCode)]
protected override bool ProcessCmdKey(ref Message msg, Keys keyData)
{
if (keyData == Keys.Escape)
if ((keyData == Keys.Escape) || (keyData == Keys.Enter))
{
Close();
return true;
Expand Down

0 comments on commit 28d27cd

Please sign in to comment.