From 68cfb092fc1e9bfe6580fef521ed682d238c9e57 Mon Sep 17 00:00:00 2001 From: leo Date: Mon, 6 Jan 2025 17:52:59 +0800 Subject: [PATCH] ux: use a transparent brush for non relatives paths (#848) --- src/Views/Histories.axaml.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Views/Histories.axaml.cs b/src/Views/Histories.axaml.cs index 76ce7777..28cef62b 100644 --- a/src/Views/Histories.axaml.cs +++ b/src/Views/Histories.axaml.cs @@ -554,7 +554,7 @@ namespace SourceGit.Views private void DrawCurves(DrawingContext context, Models.CommitGraph graph, double top, double bottom) { - var grayedPen = new Pen(Brushes.Gray, Models.CommitGraph.Pens[0].Thickness); + var grayedPen = new Pen(new SolidColorBrush(Colors.Gray, 0.4), Models.CommitGraph.Pens[0].Thickness); var onlyHighlightCurrentBranch = OnlyHighlightCurrentBranch; if (onlyHighlightCurrentBranch)