mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-08-08 12:16:44 +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
|
||||
begin
|
||||
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;
|
||||
end;
|
||||
end;
|
||||
|
Loading…
Reference in New Issue
Block a user