mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-06-18 09:08:19 +02:00
Designer: another debug message indicating that Message.Active<>WA_ACTIVE on Windows when Designer gets LM_ACTIVATE.
git-svn-id: trunk@47141 -
This commit is contained in:
parent
cfdbbbb410
commit
4990c79e9f
@ -2941,7 +2941,10 @@ begin
|
|||||||
LM_MOVE: Result:=MoveControl(Sender, TLMMove(TheMessage));
|
LM_MOVE: Result:=MoveControl(Sender, TLMMove(TheMessage));
|
||||||
LM_ACTIVATE: begin
|
LM_ACTIVATE: begin
|
||||||
{$IFDEF VerboseComponentPalette}
|
{$IFDEF VerboseComponentPalette}
|
||||||
DebugLn('TDesigner.IsDesignMsg: Got LM_ACTIVATE message.');
|
DebugLn(['TDesigner.IsDesignMsg: Got LM_ACTIVATE message.',
|
||||||
|
' Message.Active=',TLMActivate(TheMessage).Active,
|
||||||
|
', calling DoFormActivated(',TLMActivate(TheMessage).Active=WA_ACTIVE,')'
|
||||||
|
]);
|
||||||
{$ENDIF}
|
{$ENDIF}
|
||||||
Result:=DoFormActivated(TLMActivate(TheMessage).Active=WA_ACTIVE);
|
Result:=DoFormActivated(TLMActivate(TheMessage).Active=WA_ACTIVE);
|
||||||
end;
|
end;
|
||||||
|
Loading…
Reference in New Issue
Block a user