mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-08-09 21:35:57 +02:00
Opkman: Prevent handpoint cursor for empty links.
git-svn-id: trunk@56386 -
This commit is contained in:
parent
2ded5bb2e7
commit
d539582687
@ -1677,7 +1677,8 @@ begin
|
|||||||
else if (FHoverColumn = 4) and (FHoverNode <> nil) then
|
else if (FHoverColumn = 4) and (FHoverNode <> nil) then
|
||||||
begin
|
begin
|
||||||
Data := VST.GetNodeData(FHoverNode);
|
Data := VST.GetNodeData(FHoverNode);
|
||||||
if (Data^.DataType = 17) or (Data^.DataType = 18) then
|
if ((Data^.DataType = 17) and (Trim(Data^.HomePageURL) <> '')) or
|
||||||
|
((Data^.DataType = 18) and (Trim(Data^.DownloadURL) <> '')) then
|
||||||
FVST.Cursor := crHandPoint;
|
FVST.Cursor := crHandPoint;
|
||||||
end;
|
end;
|
||||||
end;
|
end;
|
||||||
|
Loading…
Reference in New Issue
Block a user