mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-05 23:58:06 +02:00
Cocoa: fix the crash when set TComboBox.DropDown with csDropDownList
This commit is contained in:
parent
55c4e2ffe8
commit
ec321189ad
@ -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;
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user