Cocoa/ListView: in vsIcon/vsSmallIcon/vsList, dynamic setting TListView.CheckBoxes supported

This commit is contained in:
rich2014 2024-08-05 23:48:48 +08:00
parent 75483dbcd5
commit 59e6e46286

View File

@ -636,6 +636,12 @@ end;
procedure TCocoaCollectionItem.prepareForReuse;
begin
if Assigned(_checkBox) then begin
_checkBox.removeFromSuperview;
_checkBox.release;
_checkBox:= nil;
end;
self.view.removeFromSuperview;
end;