fix #59 - git menu, no label in the list of branch when in "detached HEAD" after a checkout

This commit is contained in:
Basile Burg 2020-08-22 05:11:04 +02:00
parent e070d33e25
commit 09eca959cb
2 changed files with 8 additions and 1 deletions

View File

@ -9,6 +9,10 @@
- Project menu, git: add the first line of last commit message as additional information, between square brackets, to the items of the list of branches. (#53)
- Symbol list: keep errors and warnings at the top of the tree and never sort these two categories, to respect the lexicographic order. (#58)
## Bugs
- Project menu, git: no label in the list of branches when in "detached HEAD" after a checkout
## Other
- compilation: FPC 3.2.0 now required to compile dexed.

View File

@ -4218,7 +4218,10 @@ begin
processOutputToStrings(p, c);
while p.Running do ;
if not c.Count.equals(0) then
m.caption := m.Hint + ' [last commit: ' + c[0] + ' ]';
m.caption := m.Hint + ' [last commit: ' + c[0] + ' ]'
else
// e.g "(HEAD detached on ...)"
m.caption := m.Hint;
mnuGitBranch.Add(m);
end;
end;