ux: default commit graph thickness

This commit is contained in:
leo 2024-07-09 13:04:39 +08:00
parent 6930b51c64
commit 22d5927aa5
No known key found for this signature in database
2 changed files with 2 additions and 2 deletions

View file

@ -113,7 +113,7 @@ namespace SourceGit.Models
private set; private set;
} = new List<Pen>(); } = new List<Pen>();
public static void SetDefaultPens(double thickness = 1.5) public static void SetDefaultPens(double thickness = 2)
{ {
SetPens(_defaultPenColors, thickness); SetPens(_defaultPenColors, thickness);
} }

View file

@ -7,7 +7,7 @@ namespace SourceGit.Models
public class ThemeOverrides public class ThemeOverrides
{ {
public Dictionary<string, Color> BasicColors { get; set; } = new Dictionary<string, Color>(); public Dictionary<string, Color> BasicColors { get; set; } = new Dictionary<string, Color>();
public double GraphPenThickness { get; set; } = 1.5; public double GraphPenThickness { get; set; } = 2;
public List<Color> GraphColors { get; set; } = new List<Color>(); public List<Color> GraphColors { get; set; } = new List<Color>();
} }
} }