File tree Expand file tree Collapse file tree 1 file changed +2
-0
lines changed
src/Files.Uwp/Helpers/LayoutPreferences Expand file tree Collapse file tree 1 file changed +2
-0
lines changed Original file line number Diff line number Diff line change @@ -55,6 +55,7 @@ public override bool Equals(object obj)
55
55
return (
56
56
prefs . LayoutMode == this . LayoutMode &&
57
57
prefs . GridViewSize == this . GridViewSize &&
58
+ prefs . DirectoryGroupOption == this . DirectoryGroupOption &&
58
59
prefs . DirectorySortOption == this . DirectorySortOption &&
59
60
prefs . DirectorySortDirection == this . DirectorySortDirection &&
60
61
prefs . SortDirectoriesAlongsideFiles == this . SortDirectoriesAlongsideFiles &&
@@ -68,6 +69,7 @@ public override int GetHashCode()
68
69
{
69
70
var hashCode = LayoutMode . GetHashCode ( ) ;
70
71
hashCode = ( hashCode * 397 ) ^ GridViewSize . GetHashCode ( ) ;
72
+ hashCode = ( hashCode * 397 ) ^ DirectoryGroupOption . GetHashCode ( ) ;
71
73
hashCode = ( hashCode * 397 ) ^ DirectorySortOption . GetHashCode ( ) ;
72
74
hashCode = ( hashCode * 397 ) ^ DirectorySortDirection . GetHashCode ( ) ;
73
75
hashCode = ( hashCode * 397 ) ^ SortDirectoriesAlongsideFiles . GetHashCode ( ) ;
You can’t perform that action at this time.
0 commit comments