mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-08-17 19:19:19 +02:00
win32: pass better messages to NotifyApplicationUserInput for WM_NCMOUSE...
git-svn-id: trunk@23589 -
This commit is contained in:
parent
d9170c2e4a
commit
db416e28ac
@ -2050,6 +2050,9 @@ begin
|
||||
end;
|
||||
WM_NCLBUTTONDOWN:
|
||||
begin
|
||||
LMessage.Msg := Msg;
|
||||
LMessage.WParam := WParam;
|
||||
LMessage.LParam := LParam;
|
||||
NotifyUserInput := True;
|
||||
Assert(False, 'Trace:WindowProc - Got WM_NCLBUTTONDOWN');
|
||||
|
||||
@ -2070,6 +2073,9 @@ begin
|
||||
end;
|
||||
WM_NCMOUSEMOVE, WM_NCMOUSELEAVE:
|
||||
begin
|
||||
LMessage.Msg := Msg;
|
||||
LMessage.WParam := WParam;
|
||||
LMessage.LParam := LParam;
|
||||
NotifyUserInput := True;
|
||||
Application.DoBeforeMouseMessage(nil);
|
||||
end;
|
||||
|
Loading…
Reference in New Issue
Block a user