mirror of https://gitlab.com/basile.b/dexed.git
blame, add early exit for when the initial data are not yet collected
This commit is contained in:
parent
877072dc48
commit
ccbc12a16c
|
@ -1,6 +1,6 @@
|
|||
unit u_blame;
|
||||
|
||||
{$mode ObjFPC}{$H+}
|
||||
{$I u_defines.inc}
|
||||
|
||||
interface
|
||||
|
||||
|
@ -450,7 +450,7 @@ end;
|
|||
|
||||
procedure TBlameWidget.btnCpyPrevHashClick(Sender: TObject);
|
||||
begin
|
||||
if fDocData.isAssigned and fDoc.isAssigned then
|
||||
if fDocData.isAssigned and (length(fDocData.lineData) <> 0) and fDoc.isAssigned then
|
||||
Clipboard.AsText := fDocData.lineData[fDoc.CaretY-1].hash;
|
||||
end;
|
||||
|
||||
|
@ -462,7 +462,7 @@ end;
|
|||
|
||||
procedure TBlameWidget.btnLogPrevClick(Sender: TObject);
|
||||
begin
|
||||
if fDocData.isAssigned and fDoc.isAssigned then
|
||||
if fDocData.isAssigned and (length(fDocData.lineData) <> 0) and fDoc.isAssigned then
|
||||
showLog(fDocData.lineData[fDoc.CaretY-1].hash);
|
||||
end;
|
||||
|
||||
|
@ -470,11 +470,14 @@ procedure TBlameWidget.showLog(const hash: string);
|
|||
var
|
||||
p: TProcess;
|
||||
g: TStringList;
|
||||
n: string = '';
|
||||
begin
|
||||
if not checkTool(n) or hash.isEmpty() or (hash = 'HEAD') then
|
||||
exit;
|
||||
p := TProcess.Create(nil);
|
||||
g := TStringList.Create;
|
||||
try
|
||||
p.Executable := exeFullName('git' + exeExt);
|
||||
p.Executable := n;
|
||||
p.Options := [poUsePipes, poNoConsole];
|
||||
p.ShowWindow := swoHIDE;
|
||||
p.CurrentDirectory:= getGitCwd();
|
||||
|
|
Loading…
Reference in New Issue