mirror of https://gitlab.com/basile.b/dexed.git
early return
This commit is contained in:
parent
cb6c0a5091
commit
afc69e275d
|
@ -3714,13 +3714,12 @@ end;
|
|||
function TMainForm.checkProjectLock(message: boolean = true): boolean;
|
||||
begin
|
||||
result := false;
|
||||
if fProjActionsLock then
|
||||
begin
|
||||
result := true;
|
||||
if message then
|
||||
dlgOkInfo('This action is disabled while a project compiles',
|
||||
'Project lock warning');
|
||||
end
|
||||
if not fProjActionsLock then
|
||||
exit;
|
||||
result := true;
|
||||
if message then
|
||||
dlgOkInfo('This action is disabled while a project compiles',
|
||||
'Project lock warning');
|
||||
end;
|
||||
|
||||
procedure TMainForm.showProjTitle;
|
||||
|
|
Loading…
Reference in New Issue