mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-08-10 13:16:15 +02:00
Fix compile, for mouse over hint
git-svn-id: trunk@37139 -
This commit is contained in:
parent
7eb5fa6c4a
commit
3b43d6d9d5
@ -7779,8 +7779,8 @@ begin
|
||||
if PtInRect(FHintWindow.BoundsRect, Mouse.CursorPos) then begin // ignore any action over Hint
|
||||
if FHintWindow.Active then
|
||||
exit;
|
||||
if (Msg = WM_MOUSEMOVE) {$IFDEF WINDOWS} or (Msg = WM_NCMOUSEMOVE){$ENDIF} or
|
||||
((Msg >= WM_MOUSEFIRST) and (Msg <= WM_MOUSELAST))
|
||||
if (Msg = WM_MOUSEMOVE) {$IFDEF WINDOWS} or (Msg = WM_NCMOUSEMOVE)or
|
||||
((Msg >= WM_MOUSEFIRST) and (Msg <= WM_MOUSELAST)) {$ENDIF}
|
||||
then
|
||||
exit;
|
||||
end;
|
||||
|
Loading…
Reference in New Issue
Block a user