Skip to content

Commit 7b5496d

Browse files
Typo: changed mainForm.LoadFolderListWhithoutTask(); into mainForm.LoadFolderListWithoutTask();
1 parent 9dabe97 commit 7b5496d

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Source/Menu/DownloadContentForm.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -304,7 +304,7 @@ private async void DownloadContentButton_Click(object sender, EventArgs e)
304304
Settings.Content.Save();
305305

306306
MainForm mainForm = ((MainForm)Owner);
307-
mainForm.LoadFolderListWhithoutTask();
307+
mainForm.LoadFolderListWithoutTask();
308308
mainForm.comboBoxFolder.SelectedIndex = determineSelectedIndex(mainForm.comboBoxFolder, RouteName);
309309

310310
MessageBox.Show(Catalog.GetString("Route installed."),
@@ -904,7 +904,7 @@ private async void DeleteButton_Click(object sender, EventArgs e)
904904
dataGridViewDownloadContent.CurrentRow.Cells[1].Value = "";
905905

906906
MainForm mainForm = ((MainForm)Owner);
907-
mainForm.LoadFolderListWhithoutTask();
907+
mainForm.LoadFolderListWithoutTask();
908908

909909
Refresh();
910910

Source/Menu/MainForm.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -771,7 +771,7 @@ public void LoadFolderList()
771771
});
772772
}
773773

774-
public void LoadFolderListWhithoutTask()
774+
public void LoadFolderListWithoutTask()
775775
{
776776
Folders = Folder.GetFolders(Settings).OrderBy(f => f.Name).ToList();
777777
ShowFolderList();

0 commit comments

Comments
 (0)