SetContentSize -> set_ContentSize

This commit is contained in:
Tig
2024-05-27 14:20:59 -06:00
parent 7b3f5d21f1
commit 7840cea48c
25 changed files with 58 additions and 76 deletions

View File

@@ -32,7 +32,7 @@ public class TextTests (ITestOutputHelper output)
public void TextFormatter_Size_Tracks_ContentSize (string text, int expectedW, int expectedH)
{
var view = new View ();
view.SetContentSize(new (1,1));
view.ContentSize = new (1,1);
view.Text = text;
Assert.Equal (new (expectedW, expectedH), view.TextFormatter.Size);
}