Skip to content

Commit 0d6d045

Browse files
- Start from Download Content form failed when starting for the very first time (Open Rails just installed)
- default install path changed from C:\OpenRails to C:\OpenRailsRoutes
1 parent 9ba83fd commit 0d6d045

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

Source/Menu/DownloadContentForm.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -759,6 +759,8 @@ void StartButton_Click(object sender, EventArgs e)
759759
mainForm.comboBoxRoute.SelectedIndex = determineSelectedIndex(mainForm.comboBoxRoute, route.Start.Route);
760760

761761
mainForm.radioButtonModeActivity.Checked = true;
762+
763+
mainForm.LoadActivityList();
762764
// hardcoded: + Explore in Activity Mode +
763765
mainForm.comboBoxActivity.SelectedIndex = 1;
764766

Source/Menu/MainForm.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -764,7 +764,6 @@ public void LoadFolderList()
764764
switch (form.ShowDialog(this))
765765
{
766766
case DialogResult.OK:
767-
LoadFolderList();
768767
break;
769768
case DialogResult.Retry:
770769
RestartMenu();

Source/ORTS.Settings/ContentSettings.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ public class ContentSettings : SettingsBase
2727
{
2828
#region User Settings
2929

30-
[Default("C:\\OpenRails")]
30+
[Default("C:\\OpenRailsRoutes")]
3131
public string InstallPath { get; set; }
3232

3333
#endregion

0 commit comments

Comments
 (0)