Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file not shown.
29 changes: 0 additions & 29 deletions src/Controls/tests/TestCases.HostApp/Issues/Issue24930.cs

This file was deleted.

This file was deleted.

4 changes: 2 additions & 2 deletions src/Core/src/Platform/Android/PickerManager.cs
Original file line number Diff line number Diff line change
Expand Up @@ -40,12 +40,12 @@ public static void OnFocusChanged(bool gainFocus, EditText sender)

static void OnKeyPress(object? sender, AView.KeyEventArgs e)
{
//To prevent user from entering text when focus is received
e.Handled = true;
if (!AvailableKeys.Contains(e.KeyCode))
{
e.Handled = false;
return;
}
e.Handled = true;
(sender as AView)?.CallOnClick();
}

Expand Down