File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Rubberduck.Core/UI/Settings Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ public InspectionSettingsViewModel(Configuration config)
20
20
{
21
21
InspectionSettings = new ListCollectionView (
22
22
config . UserSettings . CodeInspectionSettings . CodeInspections
23
- . OrderBy ( inspection => inspection . TypeLabel )
23
+ . OrderBy ( inspection => inspection . InspectionType )
24
24
. ThenBy ( inspection => inspection . Description )
25
25
. ToList ( ) ) ;
26
26
@@ -29,7 +29,7 @@ public InspectionSettingsViewModel(Configuration config)
29
29
30
30
RunInspectionsOnSuccessfulParse = config . UserSettings . CodeInspectionSettings . RunInspectionsOnSuccessfulParse ;
31
31
32
- InspectionSettings . GroupDescriptions ? . Add ( new PropertyGroupDescription ( "TypeLabel " ) ) ;
32
+ InspectionSettings . GroupDescriptions ? . Add ( new PropertyGroupDescription ( "InspectionType " ) ) ;
33
33
ExportButtonCommand = new DelegateCommand ( LogManager . GetCurrentClassLogger ( ) , _ => ExportSettings ( ) ) ;
34
34
ImportButtonCommand = new DelegateCommand ( LogManager . GetCurrentClassLogger ( ) , _ => ImportSettings ( ) ) ;
35
35
You can’t perform that action at this time.
0 commit comments