Browse Source
Merge pull request #9176 from emmauss/android_fix_embedded
Fix Android native embedded control regression
pull/9184/head
Max Katz
4 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
src/Android/Avalonia.Android/AvaloniaView.cs
|
|
|
@ -74,7 +74,7 @@ namespace Avalonia.Android |
|
|
|
|
|
|
|
class ViewImpl : TopLevelImpl |
|
|
|
{ |
|
|
|
public ViewImpl(AvaloniaView avaloniaView) : base(avaloniaView, true) |
|
|
|
public ViewImpl(AvaloniaView avaloniaView) : base(avaloniaView) |
|
|
|
{ |
|
|
|
View.Focusable = true; |
|
|
|
View.FocusChange += ViewImpl_FocusChange; |
|
|
|
|