diff --git a/src/Windows/Avalonia.Win32/WindowImpl.AppWndProc.cs b/src/Windows/Avalonia.Win32/WindowImpl.AppWndProc.cs index 7a3f411195..bf9e54f56f 100644 --- a/src/Windows/Avalonia.Win32/WindowImpl.AppWndProc.cs +++ b/src/Windows/Avalonia.Win32/WindowImpl.AppWndProc.cs @@ -634,8 +634,9 @@ namespace Avalonia.Win32 case WindowsMessage.WM_MOVE: { - PositionChanged?.Invoke(new PixelPoint((short)(ToInt32(lParam) & 0xffff), - (short)(ToInt32(lParam) >> 16))); + // PositionChanged?.Invoke(new PixelPoint((short)(ToInt32(lParam) & 0xffff), + // (short)(ToInt32(lParam) >> 16))); + PositionChanged?.Invoke(Position); return IntPtr.Zero; }