mirror of
https://github.com/sourcegit-scm/sourcegit.git
synced 2024-12-22 20:37:19 -08:00
ux: default commit graph thickness
This commit is contained in:
parent
6930b51c64
commit
22d5927aa5
2 changed files with 2 additions and 2 deletions
|
@ -113,7 +113,7 @@ namespace SourceGit.Models
|
|||
private set;
|
||||
} = new List<Pen>();
|
||||
|
||||
public static void SetDefaultPens(double thickness = 1.5)
|
||||
public static void SetDefaultPens(double thickness = 2)
|
||||
{
|
||||
SetPens(_defaultPenColors, thickness);
|
||||
}
|
||||
|
|
|
@ -7,7 +7,7 @@ namespace SourceGit.Models
|
|||
public class ThemeOverrides
|
||||
{
|
||||
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>();
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue