Skip to content

Commit

Permalink
selectionPosition -> selectionStringPosition
Browse files Browse the repository at this point in the history
  • Loading branch information
kou-yeung committed Mar 18, 2020
1 parent 7e5dd51 commit 4fbec04
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -58,14 +58,14 @@ public bool isFocused

public int selectionFocusPosition
{
get { return input.selectionFocusPosition; }
set { input.selectionFocusPosition = value; }
get { return input.selectionStringFocusPosition; }
set { input.selectionStringFocusPosition = value; }
}

public int selectionAnchorPosition
{
get { return input.selectionAnchorPosition; }
set { input.selectionAnchorPosition = value; }
get { return input.selectionStringAnchorPosition; }
set { input.selectionStringAnchorPosition = value; }
}

public bool OnFocusSelectAll
Expand Down

0 comments on commit 4fbec04

Please sign in to comment.