IDE: fixed wrong activation message. issue #41561

This commit is contained in:
zeljan1 2025-04-02 17:14:26 +02:00
parent f796680ac6
commit 441180f7e0

View File

@ -613,7 +613,7 @@ end;
procedure TMainIDEBar.WndProc(var Message: TLMessage);
begin
inherited WndProc(Message);
if (Message.Msg=LM_ACTIVATE) and (Message.Result=0) then
if (Message.Msg=LM_ACTIVATE) and (Message.Result=0) and (Lo(Message.WParam) <> WA_INACTIVE) then
DoActive;
end;