IDE: fixed wrong activation message. issue #41561

(cherry picked from commit 441180f7e0)

Co-authored-by: zeljan1 <zeljko@holobit.hr>
This commit is contained in:
Željan Rikalo 2025-04-03 18:16:04 +02:00 committed by Željan Rikalo
parent 6e9f268657
commit c6da667143

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;