mirror of https://gitlab.com/basile.b/dexed.git
blame widget, force lower case hash
a741032bd1 did not fix the problem,
the problem is in the input text
This commit is contained in:
parent
e16a751495
commit
7fea8c5e4d
|
|
@ -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();
|
tmp := rng.takeUntil(' ').yield().ToLower();
|
||||||
fDocData.lineData[i].hash := tmp;
|
fDocData.lineData[i].hash := tmp;
|
||||||
rng.popFront();
|
rng.popFront();
|
||||||
// optional filename
|
// optional filename
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue