File tree Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -1343,12 +1343,14 @@ void UpdateFromMenuSelection<T>(ComboBox comboBox, UserSettings.Menu_SelectionIn
1343
1343
string value = GetValueFromMenuSelection ( index ) ;
1344
1344
if ( ! string . IsNullOrEmpty ( value ) )
1345
1345
{
1346
- if ( comboBox . DropDownStyle == ComboBoxStyle . DropDown ) { comboBox . Text = value ; }
1347
- else { SelectComboBoxItem < T > ( comboBox , item => map ( item ) == value ) ; }
1346
+ if ( comboBox . DropDownStyle == ComboBoxStyle . DropDown )
1347
+ comboBox . Text = value ;
1348
+ else
1349
+ SelectComboBoxItem < T > ( comboBox , item => map ( item ) == value ) ;
1348
1350
}
1349
1351
else
1350
1352
{
1351
- // when explore in activit mode, try the content route info
1353
+ // when explore-in-activity mode, try the content route info
1352
1354
var routes = Settings . Content . ContentRouteSettings . Routes ;
1353
1355
if ( ( SelectedActivity != null && SelectedActivity is ExploreThroughActivity ) &&
1354
1356
( SelectedFolder != null && routes . ContainsKey ( SelectedFolder . Name ) && routes [ SelectedFolder . Name ] . Installed ) &&
You can’t perform that action at this time.
0 commit comments