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
13431343 string value = GetValueFromMenuSelection ( index ) ;
13441344 if ( ! string . IsNullOrEmpty ( value ) )
13451345 {
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 ) ;
13481350 }
13491351 else
13501352 {
1351- // when explore in activit mode, try the content route info
1353+ // when explore-in-activity mode, try the content route info
13521354 var routes = Settings . Content . ContentRouteSettings . Routes ;
13531355 if ( ( SelectedActivity != null && SelectedActivity is ExploreThroughActivity ) &&
13541356 ( SelectedFolder != null && routes . ContainsKey ( SelectedFolder . Name ) && routes [ SelectedFolder . Name ] . Installed ) &&
You can’t perform that action at this time.
0 commit comments