mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-07 12:18:03 +02:00
LCL: fixed Alt+TAB When TCheckComboBox is dropped down. Patch by Serge Anvarov. Issue #37839
git-svn-id: trunk@63941 -
This commit is contained in:
parent
dcb1871753
commit
35ba577ed4
@ -805,7 +805,7 @@ begin
|
||||
{$ENDIF}
|
||||
if not FRejectToggleOnSelect then
|
||||
begin
|
||||
if ItemEnabled[ItemIndex] then Toggle(ItemIndex);
|
||||
if (ItemIndex >= 0) and ItemEnabled[ItemIndex] then Toggle(ItemIndex);
|
||||
FRejectToggleOnSelect:=True;
|
||||
end;
|
||||
FDropped:=False;
|
||||
|
Loading…
Reference in New Issue
Block a user