Skip to content

Commit a02d020

Browse files
committed
Fix IndexOutOfBound issue when adding new profile
1 parent 2c1e070 commit a02d020

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Flow.Launcher/SelectFileManagerWindow.xaml.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,8 +55,8 @@ private void btnCancel_Click(object sender, RoutedEventArgs e)
5555

5656
private void btnDone_Click(object sender, RoutedEventArgs e)
5757
{
58-
Settings.CustomExplorerIndex = SelectedCustomExplorerIndex;
5958
Settings.CustomExplorerList = CustomExplorers.ToList();
59+
Settings.CustomExplorerIndex = SelectedCustomExplorerIndex;
6060
Close();
6161
}
6262

0 commit comments

Comments
 (0)