Skip to content

Commit

Permalink
Fix mapping
Browse files Browse the repository at this point in the history
  • Loading branch information
hartez committed Mar 18, 2021
1 parent f4ba500 commit 9568465
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Core/src/Handlers/Editor/EditorHandler.Android.cs
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ public static void MapCharacterSpacing(EditorHandler handler, IEditor editor)
handler.TypedNativeView?.UpdateCharacterSpacing(editor);
}

public static void MapPredictiveText(EditorHandler handler, IEditor editor)
public static void MapIsTextPredictionEnabled(EditorHandler handler, IEditor editor)
{
handler.TypedNativeView?.UpdateIsTextPredictionEnabled(editor);
}
Expand Down
2 changes: 1 addition & 1 deletion src/Core/src/Handlers/Editor/EditorHandler.iOS.cs
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ public static void MapCharacterSpacing(EditorHandler handler, IEditor editor)
handler.TypedNativeView?.UpdateCharacterSpacing(editor);
}

public static void MapPredictiveText(EditorHandler handler, IEditor editor)
public static void MapIsTextPredictionEnabled(EditorHandler handler, IEditor editor)
{
handler.TypedNativeView?.UpdatePredictiveText(editor);
}
Expand Down

0 comments on commit 9568465

Please sign in to comment.