mirror of https://gitlab.com/basile.b/dexed.git
blame view, keep hashes lowcased
otherwise copy button will copy something that's not always handled, xref https://gitlab.com/gitlab-org/gitlab/-/issues/453996
This commit is contained in:
parent
ccbc12a16c
commit
a741032bd1
|
@ -236,7 +236,7 @@ begin
|
||||||
line:= gitLines[i];
|
line:= gitLines[i];
|
||||||
rng := TStringRange.create(line);
|
rng := TStringRange.create(line);
|
||||||
// hash
|
// hash
|
||||||
tmp := rng.takeUntil(' ').yield().ToUpper;
|
tmp := rng.takeUntil(' ').yield();
|
||||||
fDocData.lineData[i].hash := tmp;
|
fDocData.lineData[i].hash := tmp;
|
||||||
rng.popFront();
|
rng.popFront();
|
||||||
// optional filename
|
// optional filename
|
||||||
|
|
Loading…
Reference in New Issue