Browse Source

Fix missed property rename

robloo 3 years ago
parent
commit
91d25f7416
1 changed files with 1 additions and 1 deletions
  1. 1 1
      samples/ControlCatalog/Pages/ScreenPage.cs

+ 1 - 1
samples/ControlCatalog/Pages/ScreenPage.cs

@@ -62,7 +62,7 @@ namespace ControlCatalog.Pages
                         CreateFormattedText($"WorkArea: {screen.WorkingArea.Width}:{screen.WorkingArea.Height}");
                     context.DrawText(formattedText, boundsRect.Position.WithY(boundsRect.Size.Height + 20));
 
-                    formattedText = CreateFormattedText($"Scaling: {screen.Scale * 100}%");
+                    formattedText = CreateFormattedText($"Scaling: {screen.Scaling * 100}%");
                     context.DrawText(formattedText, boundsRect.Position.WithY(boundsRect.Size.Height + 40));
 
                     formattedText = CreateFormattedText($"IsPrimary: {screen.IsPrimary}");