Skip to content

Commit ca3a08e

Browse files
committed
Automatic merge of T1.6-rc4-30-gc09ebebcf and 14 pull requests
- Pull request #1104 at 1f7af77: Handle simple adhesion within the axle module - Pull request #1057 at 1c2bcb4: Switchable brake system - Pull request #1086 at e10390b: Add Settings Exporter tool (copy settings to INI, etc) - Pull request #1091 at 7fc8de1: Automatic speed control - Pull request #1110 at 387388e: Fix Activity Runner persists after loading exception - Pull request #1115 at 270f22f: Do not activate ETS switch if no suitable cars are attached - Pull request #1121 at 91d2d26: Manually Override Articulation - Pull request #1130 at 251a677: Fix F9 points to an incorrect car ID. - Pull request #1132 at 934d29e: Fixes For Correct Questionable Braking Parameters - Pull request #1133 at 8dc00d5: Minor Fix for Brake Pipe Charging - Pull request #1135 at bba93d3: Fix bug in PR 1045: load any activity from JSON. - Pull request #1082 at 5845a1a: Allow variable water level in glass gauge - Pull request #1081 at 689494b: Brake cuts power unification - Pull request #1124 at fab5457: Built-in PBL2 brake controller
16 parents 4236cfd + c09ebeb + 1f7af77 + 1c2bcb4 + e10390b + 7fc8de1 + 387388e + 270f22f + 91d2d26 + 251a677 + 934d29e + 8dc00d5 + bba93d3 + 5845a1a + 689494b + fab5457 commit ca3a08e

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

Source/Menu/MainForm.cs

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1389,10 +1389,9 @@ void UpdateFromMenuSelection<T>(ComboBox comboBox, UserSettings.Menu_SelectionIn
13891389
}
13901390
else
13911391
{
1392-
// when explore-in-activity mode, try the content route info
1392+
// try the content route info
13931393
var routes = Settings.Content.ContentRouteSettings.Routes;
1394-
if ((SelectedActivity != null && SelectedActivity is ExploreThroughActivity) &&
1395-
(SelectedFolder != null && routes.ContainsKey(SelectedFolder.Name) && routes[SelectedFolder.Name].Installed) &&
1394+
if ((SelectedFolder != null && routes.ContainsKey(SelectedFolder.Name) && routes[SelectedFolder.Name].Installed) &&
13961395
(!string.IsNullOrEmpty(routes[SelectedFolder.Name].Start.Route)))
13971396
{
13981397
var route = routes[SelectedFolder.Name];

0 commit comments

Comments
 (0)