mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-08-15 17:59:26 +02:00
win32: don't block win32 messages in the default handler - let's pass them to windows
git-svn-id: trunk@24144 -
This commit is contained in:
parent
44c76180a4
commit
7174f32749
@ -240,9 +240,8 @@ begin
|
||||
TLMessage(Message).Result := CallDefaultWindowProc(Handle, WM_GETDLGCODE, 0, 0);
|
||||
end;
|
||||
else
|
||||
if TLMessage(Message).Msg >= WM_USER then
|
||||
with TLMessage(Message) do
|
||||
Result := CallDefaultWindowProc(Handle, Msg, WParam, LParam);
|
||||
with TLMessage(Message) do
|
||||
Result := CallDefaultWindowProc(Handle, Msg, WParam, LParam);
|
||||
end;
|
||||
end;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user