mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-12-08 19:47:30 +01:00
IDE: package graph: ShowPath: compare case insensitive
git-svn-id: trunk@34543 -
This commit is contained in:
parent
9e21a00a70
commit
5cc3fd42cb
@ -599,8 +599,10 @@ var
|
||||
Node:=FindMainNodeWithText(NodeText)
|
||||
else begin
|
||||
Node.Expanded:=true;
|
||||
i:=Node.IndexOfText(NodeText);
|
||||
if i>=0 then
|
||||
i:=0;
|
||||
while (i<=Node.Count) and (SysUtils.CompareText(Node[i].Text,NodeText)<>0)
|
||||
do inc(i);
|
||||
if i<Node.Count then
|
||||
Node:=Node.Items[i]
|
||||
else
|
||||
Node:=nil;
|
||||
|
||||
Loading…
Reference in New Issue
Block a user