mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-16 23:49:28 +02:00
hide class node in codeexplorer
git-svn-id: trunk@8312 -
This commit is contained in:
parent
c6f54982a3
commit
c17ae7dae6
@ -436,6 +436,11 @@ begin
|
||||
ShowNode:=false;
|
||||
ShowChilds:=false;
|
||||
end;
|
||||
// don't show class node (the type node is already shown)
|
||||
if (CodeNode.Desc in [ctnClass,ctnClassInterface]) then begin
|
||||
ShowNode:=false;
|
||||
ShowChilds:=true;
|
||||
end;
|
||||
|
||||
// don't show keyword nodes
|
||||
if CodeNode.Desc in [ctnIdentifier,ctnRangedArrayType,
|
||||
@ -512,6 +517,8 @@ begin
|
||||
Exclude(FFlags,cevRefreshNeeded);
|
||||
|
||||
Include(FFlags,cevRefresing);
|
||||
|
||||
FilterEdit.Text:=lisCEFilter;
|
||||
|
||||
// get the codetool with the updated codetree
|
||||
ACodeTool:=nil;
|
||||
|
Loading…
Reference in New Issue
Block a user