Fix typo on Key.Escape comment

This commit is contained in:
Joehu 2019-10-01 08:37:08 -07:00
parent ff6367fa4b
commit e3502f5200
1 changed files with 1 additions and 1 deletions

View File

@ -61,7 +61,7 @@ protected override bool OnKeyDown(KeyDownEvent e)
if (!HasFocus) return false;
if (e.Key == Key.Escape)
return false; // disable the framework-level handling of escape key for confority (we use GlobalAction.Back).
return false; // disable the framework-level handling of escape key for conformity (we use GlobalAction.Back).
return base.OnKeyDown(e);
}