We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 416b839 commit a8d06ceCopy full SHA for a8d06ce
src/Views/Avatar.cs
@@ -7,6 +7,7 @@
7
using Avalonia.Controls;
8
using Avalonia.Interactivity;
9
using Avalonia.Media;
10
+using Avalonia.Media.Imaging;
11
12
namespace SourceGit.Views
13
{
@@ -48,6 +49,8 @@ public Avatar()
48
49
50
ContextMenu = new ContextMenu();
51
ContextMenu.Items.Add(refetch);
52
+
53
+ RenderOptions.SetBitmapInterpolationMode(this, BitmapInterpolationMode.HighQuality);
54
}
55
56
public override void Render(DrawingContext context)
0 commit comments