Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/ClusterM/hakchi2.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexey 'Cluster' Avdyukhin <clusterrr@clusterrr.com>2017-02-09 11:51:07 +0300
committerAlexey 'Cluster' Avdyukhin <clusterrr@clusterrr.com>2017-02-09 11:51:07 +0300
commiteaa6a0cdb3b0bd5dd06ffac428ce8194aa2507f7 (patch)
tree54498eea66e6568da8182399dda92ea368d623a5 /SearchForm.cs
parent37b59cfa2641ba327f7664f53589f27489f77c46 (diff)
Fixes
Diffstat (limited to 'SearchForm.cs')
-rw-r--r--SearchForm.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/SearchForm.cs b/SearchForm.cs
index 00b15a7f..1f0f73fb 100644
--- a/SearchForm.cs
+++ b/SearchForm.cs
@@ -34,7 +34,7 @@ namespace com.clusterrr.hakchi_gui
private void SearchForm_KeyDown(object sender, KeyEventArgs e)
{
- if (e.KeyCode == Keys.Escape)
+ if (e.KeyCode == Keys.Escape || e.KeyCode == Keys.Enter)
Close();
}
}