File tree 2 files changed +12
-10
lines changed
src/Games/NexusMods.Games.AdvancedInstaller.UI/Content/Right/SelectLocation
2 files changed +12
-10
lines changed Original file line number Diff line number Diff line change @@ -64,21 +64,23 @@ private static IEnumerable<ISuggestedEntryViewModel> CreateSuggestedEntries(IGam
64
64
foreach ( var ( locationId , fullPath ) in register . GetTopLevelLocations ( ) )
65
65
{
66
66
suggestedEntries . Add ( new SuggestedEntryViewModel (
67
- Guid . NewGuid ( ) ,
68
- fullPath ,
69
- locationId ,
70
- new GamePath ( locationId , RelativePath . Empty ) ) ) ;
67
+ id : Guid . NewGuid ( ) ,
68
+ absolutePath : fullPath ,
69
+ associatedLocation : locationId ,
70
+ relativeToTopLevelLocation : new GamePath ( locationId , RelativePath . Empty )
71
+ ) ) ;
71
72
72
73
// Add nested locations to suggested entries.
73
74
foreach ( var nestedLocation in register . GetNestedLocations ( locationId ) )
74
75
{
75
76
var nestedFullPath = register . GetResolvedPath ( nestedLocation ) ;
76
77
var relativePath = nestedFullPath . RelativeTo ( fullPath ) ;
77
78
suggestedEntries . Add ( new SuggestedEntryViewModel (
78
- Guid . NewGuid ( ) ,
79
- nestedFullPath ,
80
- nestedLocation ,
81
- new GamePath ( locationId , relativePath ) ) ) ;
79
+ id : Guid . NewGuid ( ) ,
80
+ absolutePath : nestedFullPath ,
81
+ associatedLocation : nestedLocation ,
82
+ relativeToTopLevelLocation : new GamePath ( locationId , relativePath )
83
+ ) ) ;
82
84
}
83
85
}
84
86
Original file line number Diff line number Diff line change @@ -38,8 +38,8 @@ public SuggestedEntryViewModel(
38
38
AssociatedLocation = associatedLocation ;
39
39
RelativeToTopLevelLocation = relativeToTopLevelLocation ;
40
40
41
- Title = title == string . Empty ? associatedLocation . Value . ToString ( ) : title ;
42
- Subtitle = subtitle == string . Empty ? AbsolutePath . ToString ( ) : subtitle ;
41
+ Title = string . IsNullOrEmpty ( title ) ? associatedLocation . ToString ( ) : title ;
42
+ Subtitle = string . IsNullOrEmpty ( subtitle ) ? AbsolutePath . ToString ( ) : subtitle ;
43
43
44
44
CreateMappingCommand = ReactiveCommand . Create ( ( ) => { } ) ;
45
45
}
You can’t perform that action at this time.
0 commit comments