Skip to content

Commit

Permalink
GeneralKeyboardHelpSection.js -> BasicActionsKeyboardHelpSection.js, …
Browse files Browse the repository at this point in the history
  • Loading branch information
jessegreenberg committed Dec 16, 2021
1 parent 339c71d commit 710a797
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions js/common/view/RAPKeyboardHelpContent.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
* @author Michael Kauzmann (PhET Interactive Simulations)
*/

import GeneralKeyboardHelpSection from '../../../../scenery-phet/js/keyboard/help/GeneralKeyboardHelpSection.js';
import BasicActionsKeyboardHelpSection from '../../../../scenery-phet/js/keyboard/help/BasicActionsKeyboardHelpSection.js';
import KeyboardHelpIconFactory from '../../../../scenery-phet/js/keyboard/help/KeyboardHelpIconFactory.js';
import KeyboardHelpSection from '../../../../scenery-phet/js/keyboard/help/KeyboardHelpSection.js';
import SliderKeyboardHelpSection from '../../../../scenery-phet/js/keyboard/help/SliderKeyboardHelpSection.js';
Expand Down Expand Up @@ -35,12 +35,12 @@ class RAPKeyboardHelpContent extends TwoColumnKeyboardHelpContent {
arrowKeyIconDisplay: ( SliderKeyboardHelpSection.ArrowKeyIconDisplay as any ).UP_DOWN // on cue up/down arrows, not left/right also. TODO https://github.com/phetsims/ratio-and-proportion/issues/404
} );

const generalNavigationHelpSection = new GeneralKeyboardHelpSection( {
const basicActionsHelpSection = new BasicActionsKeyboardHelpSection( {
withCheckboxContent: true
} );

const leftContent = [ moveLeftOrRightHandHelpSection, new BothHandsHelpSection() ];
const rightContent = [ challengeHelpSection, generalNavigationHelpSection ];
const rightContent = [ challengeHelpSection, basicActionsHelpSection ];

super( leftContent, rightContent, options );
}
Expand Down

0 comments on commit 710a797

Please sign in to comment.