From 1b63da45e5d0cb60366b615fc1e202834a6d2364 Mon Sep 17 00:00:00 2001 From: leo Date: Tue, 24 Sep 2024 09:40:55 +0800 Subject: [PATCH] ux: disable line smoothness in `Statistics` --- src/Models/Statistics.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/Models/Statistics.cs b/src/Models/Statistics.cs index c493d8a7..0d2c439c 100644 --- a/src/Models/Statistics.cs +++ b/src/Models/Statistics.cs @@ -105,7 +105,8 @@ namespace SourceGit.Models Stroke = new SolidColorPaint(SKColors.Green) { StrokeThickness = 1 }, Fill = new SolidColorPaint(SKColors.SkyBlue.WithAlpha(90)), GeometrySize = 8, - GeometryStroke = new SolidColorPaint(SKColors.Green) { StrokeThickness = 2 } + GeometryStroke = new SolidColorPaint(SKColors.Green) { StrokeThickness = 2 }, + LineSmoothness = 0, } );