diff --git a/ide/codeexplopts.pas b/ide/codeexplopts.pas index f119d4fba8..55e3070dd0 100644 --- a/ide/codeexplopts.pas +++ b/ide/codeexplopts.pas @@ -86,7 +86,14 @@ const DefaultCodeExplorerCategories = [cecUses, cecTypes,cecVariables,cecConstants,cecProcedures]; cefcAll = [low(TCEFigureCategory)..high(TCEFigureCategory)]; - DefaultCodeExplorerFigureCategories = cefcAll; + DefaultCodeExplorerFigureCategories = [ + cefcLongProcs, + cefcEmptyProcs, + cefcUnnamedConsts, + cefcEmptyBlocks, + cefcPublishedPropWithoutDefault, + cefcToDos + ]; DefaultFigLongProcLineCount = 50; DefaultFigLongParamListCount = 6; DefaultFigNestedProcCount = 3;