Browse Source

fixes some rare rendering artifacts when dpi != 100%

pull/2171/head
Andrey Kunchev 7 years ago
parent
commit
6088975a82
  1. 8
      src/Windows/Avalonia.Win32/WindowImpl.cs

8
src/Windows/Avalonia.Win32/WindowImpl.cs

@ -281,10 +281,10 @@ namespace Avalonia.Win32
var f = Scaling;
var r = new UnmanagedMethods.RECT
{
left = (int)(rect.X * f),
top = (int)(rect.Y * f),
right = (int)(rect.Right * f),
bottom = (int)(rect.Bottom * f),
left = (int)Math.Floor(rect.X * f),
top = (int)Math.Floor(rect.Y * f),
right = (int)Math.Ceiling(rect.Right * f),
bottom = (int)Math.Ceiling(rect.Bottom * f),
};
UnmanagedMethods.InvalidateRect(_hwnd, ref r, false);

Loading…
Cancel
Save