From a741032bd1eed8afd08ade6914893dda8394c9ce Mon Sep 17 00:00:00 2001 From: Basile Burg Date: Tue, 2 Apr 2024 00:25:17 +0200 Subject: [PATCH] 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 --- src/u_blame.pas | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/u_blame.pas b/src/u_blame.pas index e5d72099..41832282 100644 --- a/src/u_blame.pas +++ b/src/u_blame.pas @@ -236,7 +236,7 @@ begin line:= gitLines[i]; rng := TStringRange.create(line); // hash - tmp := rng.takeUntil(' ').yield().ToUpper; + tmp := rng.takeUntil(' ').yield(); fDocData.lineData[i].hash := tmp; rng.popFront(); // optional filename