Browse Source

Don't swallow all KeyDown events in TextBox.

Fixes #423
Steven Kirk 9 years ago
parent
commit
f594785246
1 changed files with 4 additions and 0 deletions
  1. 4 0
      src/Perspex.Controls/TextBox.cs

+ 4 - 0
src/Perspex.Controls/TextBox.cs

@@ -353,6 +353,10 @@ namespace Perspex.Controls
                     }
 
                     break;
+
+                default:
+                    handled = false;
+                    break;
             }
 
             if (movement && ((modifiers & InputModifiers.Shift) != 0))