File tree Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -1356,11 +1356,13 @@ void UpdateFromMenuSelection<T>(ComboBox comboBox, UserSettings.Menu_SelectionIn
1356
1356
else
1357
1357
{
1358
1358
// if selected folder is in the content routes setting and has a start route
1359
+ // and the selected activity is explore in activit mode
1359
1360
var routes = Settings . Content . ContentRouteSettings . Routes ;
1360
1361
if ( ( SelectedFolder != null ) &&
1361
1362
routes . ContainsKey ( SelectedFolder . Name ) &&
1362
1363
routes [ SelectedFolder . Name ] . Installed &&
1363
- ! string . IsNullOrEmpty ( routes [ SelectedFolder . Name ] . Start . Route ) )
1364
+ ! string . IsNullOrEmpty ( routes [ SelectedFolder . Name ] . Start . Route ) &&
1365
+ SelectedActivity != null && SelectedActivity is ExploreThroughActivity )
1364
1366
{
1365
1367
var route = routes [ SelectedFolder . Name ] ;
1366
1368
string valueComboboxToSetTo = "" ;
You can’t perform that action at this time.
0 commit comments