File tree 1 file changed +6
-3
lines changed
1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -67,11 +67,14 @@ public void RefreshCollections()
67
67
return ;
68
68
}
69
69
70
- var collections = Ipc . GetCollections . Subscriber ( Dalamud . PluginInterface ) . Invoke ( ) ;
71
- var defaultCollection = Ipc . GetDefaultCollectionName . Subscriber ( Dalamud . PluginInterface ) . Invoke ( ) ;
70
+ var defaultCollection = Ipc . GetDefaultCollectionName . Subscriber ( Dalamud . PluginInterface ) . Invoke ( ) ;
71
+ var rawUserCollections = Ipc . GetCollections . Subscriber ( Dalamud . PluginInterface ) . Invoke ( ) ;
72
+ var userCollections = new List < string > ( rawUserCollections ) ;
73
+ userCollections . Sort ( StringComparer . OrdinalIgnoreCase ) ;
74
+
72
75
Collections . Add ( defaultCollection ) ;
73
76
Collections . Add ( "None" ) ;
74
- Collections . AddRange ( collections ) ;
77
+ Collections . AddRange ( userCollections ) ;
75
78
}
76
79
77
80
private void CleanupOverrides ( )
You can’t perform that action at this time.
0 commit comments