Browse Source

Fix missed property rename

pull/9133/head
robloo 4 years ago
parent
commit
91d25f7416
  1. 2
      samples/ControlCatalog/Pages/ScreenPage.cs

2
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}");

Loading…
Cancel
Save