Browse Source
Merge branch 'master' into fix-non-invertible-matrix
pull/5109/head
Dariusz Komosiński
5 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
5 additions and
2 deletions
-
src/Avalonia.Controls/AutoCompleteBox.cs
|
|
|
@ -1405,8 +1405,11 @@ namespace Avalonia.Controls |
|
|
|
break; |
|
|
|
|
|
|
|
case Key.Enter: |
|
|
|
OnAdapterSelectionComplete(this, new RoutedEventArgs()); |
|
|
|
e.Handled = true; |
|
|
|
if (IsDropDownOpen) |
|
|
|
{ |
|
|
|
OnAdapterSelectionComplete(this, new RoutedEventArgs()); |
|
|
|
e.Handled = true; |
|
|
|
} |
|
|
|
break; |
|
|
|
|
|
|
|
default: |
|
|
|
|