* Check if action is assigned before calling update on it

This commit is contained in:
Michaël Van Canneyt 2024-08-13 10:24:36 +02:00
parent 43660084b6
commit 2accac30ae

View File

@ -79,7 +79,8 @@ end;
function TBasicActionLink.Update: Boolean;
begin
Result := FAction.Update;
if Assigned(Faction) then
Result := FAction.Update;
end;
{****************************************************************************}