Преглед изворни кода

Fix missed property rename

robloo пре 3 година
родитељ
комит
91d25f7416
1 измењених фајлова са 1 додато и 1 уклоњено
  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}");