From 80d3d7f3de51ce6b96dc0a5b1fa203e34a4c11b6 Mon Sep 17 00:00:00 2001 From: Dan Walmsley Date: Wed, 19 May 2021 15:20:22 +0100 Subject: [PATCH] Merge pull request #5948 from AvaloniaUI/fixes/handle-scaling-correctly-osx fix implementation of ScalingChanged property. --- src/Avalonia.Native/WindowImplBase.cs | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/Avalonia.Native/WindowImplBase.cs b/src/Avalonia.Native/WindowImplBase.cs index 71359f733d..f716464d14 100644 --- a/src/Avalonia.Native/WindowImplBase.cs +++ b/src/Avalonia.Native/WindowImplBase.cs @@ -414,9 +414,7 @@ namespace Avalonia.Native public Action Input { get; set; } - Action ScalingChanged { get; set; } - - Action ITopLevelImpl.ScalingChanged { get; set; } + public Action ScalingChanged { get; set; } public Action TransparencyLevelChanged { get; set; }