diff --git a/src/Converters/DecoratorTypeConverters.cs b/src/Converters/DecoratorTypeConverters.cs index 9a65ab4d..eb016360 100644 --- a/src/Converters/DecoratorTypeConverters.cs +++ b/src/Converters/DecoratorTypeConverters.cs @@ -36,5 +36,8 @@ namespace SourceGit.Converters return Application.Current?.FindResource(key) as StreamGeometry; }); + + public static readonly FuncValueConverter ToFontWeight = + new FuncValueConverter(v => v == Models.DecoratorType.CurrentBranchHead ? FontWeight.Bold : FontWeight.Regular); } } diff --git a/src/Views/Histories.axaml b/src/Views/Histories.axaml index 4a621c59..0dfedc9a 100644 --- a/src/Views/Histories.axaml +++ b/src/Views/Histories.axaml @@ -54,7 +54,12 @@ VerticalAlignment="Center"/> - +