mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-05 05:28:17 +02:00
LCL/TApplication: ShowHintWindow calls ActivateHint when HintInfo.HintData is nil, otherwise ActivateHintData.
This commit is contained in:
parent
209c68264b
commit
6a6db7e851
@ -906,7 +906,10 @@ begin
|
||||
FHintWindow.Color := HintInfo.HintColor;
|
||||
//DebugLn(['TApplication.ShowHintWindow FHintWindow.Color=',dbgs(FHintWindow.Color),' HintInfo.HintColor=',dbgs(HintInfo.HintColor)]);
|
||||
|
||||
FHintWindow.ActivateHintData(HintWinRect, HintInfo.HintStr, HintInfo.HintData);
|
||||
if Assigned(HintInfo.HintData) then
|
||||
FHintWindow.ActivateHintData(HintWinRect, HintInfo.HintStr, HintInfo.HintData)
|
||||
else
|
||||
FHintWindow.ActivateHint(HintWinRect, HintInfo.HintStr);
|
||||
FHintRect := HintInfo.CursorRect;
|
||||
// start hide timer
|
||||
if HintInfo.ReshowTimeout>0 then
|
||||
|
Loading…
Reference in New Issue
Block a user