Skip to content

Commit

Permalink
馃敁 Make IsClickThrough and CanBeFocused setters public (#118)
Browse files Browse the repository at this point in the history
  • Loading branch information
tomrijnbeek committed Mar 1, 2024
1 parent 098ba2a commit 6f38d6a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Bearded.UI/Controls/Control.cs
Original file line number Diff line number Diff line change
Expand Up @@ -49,11 +49,11 @@ public bool IsVisible
}
}

public bool IsClickThrough { get; protected set; }
public bool IsClickThrough { get; set; }

public bool IsFocused { get; private set; }

public bool CanBeFocused { get; protected set; }
public bool CanBeFocused { get; set; }

public void Focus()
{
Expand Down

0 comments on commit 6f38d6a

Please sign in to comment.