Skip to content

Commit 9568465

Browse files
committed
Fix mapping
1 parent f4ba500 commit 9568465

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/Core/src/Handlers/Editor/EditorHandler.Android.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ public static void MapCharacterSpacing(EditorHandler handler, IEditor editor)
3131
handler.TypedNativeView?.UpdateCharacterSpacing(editor);
3232
}
3333

34-
public static void MapPredictiveText(EditorHandler handler, IEditor editor)
34+
public static void MapIsTextPredictionEnabled(EditorHandler handler, IEditor editor)
3535
{
3636
handler.TypedNativeView?.UpdateIsTextPredictionEnabled(editor);
3737
}

src/Core/src/Handlers/Editor/EditorHandler.iOS.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ public static void MapCharacterSpacing(EditorHandler handler, IEditor editor)
2626
handler.TypedNativeView?.UpdateCharacterSpacing(editor);
2727
}
2828

29-
public static void MapPredictiveText(EditorHandler handler, IEditor editor)
29+
public static void MapIsTextPredictionEnabled(EditorHandler handler, IEditor editor)
3030
{
3131
handler.TypedNativeView?.UpdatePredictiveText(editor);
3232
}

0 commit comments

Comments
 (0)