Skip to content

Commit

Permalink
support .NET 3.5
Browse files Browse the repository at this point in the history
  • Loading branch information
kou-yeung committed Jan 11, 2020
1 parent 19721a1 commit 9f914e1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ class WrappedInputField : IInputField
{
InputField input;

public bool ReadOnly { get => input.readOnly; }
public bool ReadOnly { get { return input.readOnly; } }

public string text
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ class WrappedTMPInputField : IInputField
{
TMP_InputField input;

public bool ReadOnly { get => input.readOnly; }
public bool ReadOnly { get { return input.readOnly; } }

public string text
{
Expand Down

0 comments on commit 9f914e1

Please sign in to comment.