Cocoa: fix the crash when set TComboBox.DropDown with csDropDownList

This commit is contained in:
rich2014 2024-08-09 22:49:08 +08:00
parent 55c4e2ffe8
commit ec321189ad

View File

@ -2020,7 +2020,8 @@ begin
Exit;
if not ADroppedDown then exit;
comboBox:= TCocoaComboBox(ACustomComboBox.Handle);
comboBox.cell.performSelector_withObject_afterDelay( ObjCSelector('moveDown:'), nil, 0 );
if comboBox.cell.respondsToSelector(ObjCSelector('moveDown:')) then
comboBox.cell.performSelector_withObject_afterDelay( ObjCSelector('moveDown:'), nil, 0 );
end;