More fixes

This commit is contained in:
2026-01-17 05:22:37 +00:00
parent f62d4aa5f2
commit 7d2ac327a3
58 changed files with 754 additions and 666 deletions

View File

@@ -177,8 +177,8 @@ public class SkiaWindow
// Draw main content
if (_content != null)
{
_content.Measure(new SKSize(_width, _height));
_content.Arrange(new SKRect(0, 0, _width, _height));
_content.Measure(new Size(_width, _height));
_content.Arrange(new Rect(0, 0, _width, _height));
_content.Draw(canvas);
}