Skip to content

Commit b434c6a

Browse files
github-actions[bot]PureWeen
authored andcommitted
[create-pull-request] automated change (#30078)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent bce5cc7 commit b434c6a

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

src/Core/src/Handlers/Picker/PickerHandler.Android.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ internal static void MapUnfocus(IPickerHandler handler, IPicker picker, object?
9898
if (handler.IsConnected() && handler is PickerHandler pickerHandler)
9999
{
100100
pickerHandler.DismissDialog();
101-
ViewHandler.MapUnfocus(handler,picker,args);
101+
ViewHandler.MapUnfocus(handler, picker, args);
102102
}
103103
}
104104

src/Core/src/Platform/Android/PickerManager.cs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,12 @@ internal static class PickerManager
1414
public static void Init(EditText editText)
1515
{
1616
editText.Focusable = true;
17-
editText.FocusableInTouchMode = false;
18-
editText.Clickable = true;
17+
editText.FocusableInTouchMode = false;
18+
editText.Clickable = true;
1919

20-
// InputType needs to be set before setting KeyListener
21-
editText.InputType = InputTypes.Null;
22-
editText.KeyListener = null;
20+
// InputType needs to be set before setting KeyListener
21+
editText.InputType = InputTypes.Null;
22+
editText.KeyListener = null;
2323
}
2424

2525
public static void Dispose(EditText editText)

0 commit comments

Comments
 (0)