Browse Source

Merge branch 'master' into fix-animation-repeat-modes

pull/2163/head
Jumar Macato 8 years ago
committed by GitHub
parent
commit
4c4f5b62e1
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 8
      nukebuild/.editorconfig
  2. 8
      src/Windows/Avalonia.Win32/WindowImpl.cs

8
nukebuild/.editorconfig

@ -0,0 +1,8 @@
# editorconfig.org
# top-most EditorConfig file
root = false
# C# files
[*.cs]
dotnet_style_require_accessibility_modifiers = never

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