From 7fea8c5e4d2e8bfba92d049e542e627e32fb5a09 Mon Sep 17 00:00:00 2001 From: Basile Burg Date: Mon, 29 Apr 2024 07:18:42 +0200 Subject: [PATCH] blame widget, force lower case hash a741032bd1eed8afd08ade6914893dda8394c9ce did not fix the problem, the problem is in the input text --- 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 41832282..d472651c 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(); + tmp := rng.takeUntil(' ').yield().ToLower(); fDocData.lineData[i].hash := tmp; rng.popFront(); // optional filename