Add Overview mode to file redirection edit.

This commit is contained in:
Ottermandias 2022-07-27 12:59:33 +02:00
parent d6c0362404
commit 7a7093369f
4 changed files with 95 additions and 57 deletions

View file

@ -276,8 +276,8 @@ public partial class ModCollection
case SelectType.Multi:
{
foreach( var (option, _) in group.WithIndex()
.OrderByDescending( p => group.OptionPriority( p.Item2 ) )
.Where( p => ( ( 1 << p.Item2 ) & config ) != 0 ) )
.Where( p => ( ( 1 << p.Item2 ) & config ) != 0 )
.OrderByDescending( p => group.OptionPriority( p.Item2 ) ) )
{
AddSubMod( option, mod );
}