Skip to content

Commit

Permalink
[Manager] Fixed crash for the apply mods button (#76)
Browse files Browse the repository at this point in the history
  • Loading branch information
wannkunstbeikor authored May 24, 2022
1 parent 2092c5e commit 929f8ae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion FrostyModManager/Windows/MainWindow.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1384,7 +1384,7 @@ private void availableModsList_MouseDoubleClick(object sender, MouseButtonEventA

private void addModButton_Click(object sender, RoutedEventArgs e)
{
foreach (FrostyMod mod in availableModsList.SelectedItems)
foreach (IFrostyMod mod in availableModsList.SelectedItems)
selectedPack.AddMod(mod);

appliedModsList.Items.Refresh();
Expand Down

0 comments on commit 929f8ae

Please sign in to comment.