mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-08-18 07:59:28 +02:00
lcl: treeview: fix hiding tool tips. Issue #32553
git-svn-id: trunk@56075 -
This commit is contained in:
parent
dad863f838
commit
6700026d69
@ -5705,7 +5705,8 @@ begin
|
|||||||
FStates:=FStates-[tvsDblClicked,tvsTripleClicked,tvsQuadClicked,
|
FStates:=FStates-[tvsDblClicked,tvsTripleClicked,tvsQuadClicked,
|
||||||
tvsEditOnMouseUp,tvsSingleSelectOnMouseUp];
|
tvsEditOnMouseUp,tvsSingleSelectOnMouseUp];
|
||||||
if Assigned(FHintWnd) and FHintWnd.Visible
|
if Assigned(FHintWnd) and FHintWnd.Visible
|
||||||
and not PtInRect(ClientRect, ScreenToClient(Mouse.CursorPos)) then
|
and ((WidgetSet.GetLCLCapability(lcTransparentWindow) = LCL_CAPABILITY_YES)
|
||||||
|
or not PtInRect(ClientRect, ScreenToClient(Mouse.CursorPos))) then
|
||||||
FHintWnd.Hide;
|
FHintWnd.Hide;
|
||||||
inherited MouseLeave;
|
inherited MouseLeave;
|
||||||
end;
|
end;
|
||||||
|
Loading…
Reference in New Issue
Block a user