From 863961551c6e01c6fa254dc33d014dec02ae6846 Mon Sep 17 00:00:00 2001 From: Dan Walmsley Date: Wed, 19 May 2021 15:00:28 +0100 Subject: [PATCH] fix implementation of ScalingChanged property. there were 2x implementations, 1x implicit, 1x explicit... :face-palm: --- 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; }