mirror of https://gitlab.com/basile.b/dexed.git
fix #59 - git menu, no label in the list of branch when in "detached HEAD" after a checkout
This commit is contained in:
parent
e070d33e25
commit
09eca959cb
|
@ -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.
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue