From 87a87a4495affa49b9150b80b6accc768ed9801c Mon Sep 17 00:00:00 2001 From: Steven Kirk Date: Mon, 27 Apr 2015 23:14:28 +0200 Subject: [PATCH] Only handle arrow keys! --- Perspex.Controls/Primitives/SelectingItemsControl.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Perspex.Controls/Primitives/SelectingItemsControl.cs b/Perspex.Controls/Primitives/SelectingItemsControl.cs index 30c899d626..c7a5bdbe8d 100644 --- a/Perspex.Controls/Primitives/SelectingItemsControl.cs +++ b/Perspex.Controls/Primitives/SelectingItemsControl.cs @@ -104,6 +104,8 @@ namespace Perspex.Controls.Primitives case Key.Right: this.MoveSelection(FocusNavigationDirection.Right); break; + default: + return; } var selected = this.SelectedItem;