Browse Source

Only handle arrow keys!

pull/58/head
Steven Kirk 11 years ago
parent
commit
87a87a4495
  1. 2
      Perspex.Controls/Primitives/SelectingItemsControl.cs

2
Perspex.Controls/Primitives/SelectingItemsControl.cs

@ -104,6 +104,8 @@ namespace Perspex.Controls.Primitives
case Key.Right: case Key.Right:
this.MoveSelection(FocusNavigationDirection.Right); this.MoveSelection(FocusNavigationDirection.Right);
break; break;
default:
return;
} }
var selected = this.SelectedItem; var selected = this.SelectedItem;

Loading…
Cancel
Save