Skip to content

Commit

Permalink
Fix window title version length when on non master branch
Browse files Browse the repository at this point in the history
  • Loading branch information
Yoooi0 committed Feb 3, 2024
1 parent cc39176 commit af0716b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/MultiFunPlayer/RootViewModel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ internal sealed class RootViewModel : Conductor<IScreen>.Collection.AllActive, I
public int WindowTop { get; set; }

public string WindowTitleVersion => GitVersionInformation.CommitsSinceVersionSource == "0" ? $"v{GitVersionInformation.MajorMinorPatch}"
: $"v{GitVersionInformation.InformationalVersion}";
: $"v{GitVersionInformation.MajorMinorPatch}.{GitVersionInformation.ShortSha}";

public RootViewModel(IEventAggregator eventAggregator)
{
Expand Down

0 comments on commit af0716b

Please sign in to comment.