We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 928a4fd commit 2c90c9bCopy full SHA for 2c90c9b
Source/HtmlRenderer.WPF/HtmlControl.cs
@@ -90,12 +90,14 @@ public class HtmlControl : Control
90
#endregion
91
92
93
-
94
/// <summary>
95
/// Creates a new HtmlPanel and sets a basic css for it's styling.
96
/// </summary>
97
protected HtmlControl()
98
{
+ // shitty WPF rendering, have no idea why this actually makes everything sharper =/
99
+ SnapsToDevicePixels = false;
100
+
101
_htmlContainer = new HtmlContainer();
102
_htmlContainer.LinkClicked += OnLinkClicked;
103
_htmlContainer.RenderError += OnRenderError;
0 commit comments