Skip to content

Commit

Permalink
SelfVoicingQuickControl -> VoicingQuickControl, see phetsims/tasks#1083
Browse files Browse the repository at this point in the history
  • Loading branch information
jessegreenberg committed Mar 24, 2021
1 parent fe75ea7 commit 04591f7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions js/john-travoltage/view/JohnTravoltageView.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ import Shape from '../../../../kite/js/Shape.js';
import platform from '../../../../phet-core/js/platform.js';
import StringUtils from '../../../../phetcommon/js/util/StringUtils.js';
import VoicingInputListener from '../../../../scenery-phet/js/accessibility/speaker/VoicingInputListener.js';
import SelfVoicingQuickControl from '../../../../scenery-phet/js/accessibility/speaker/SelfVoicingQuickControl.js';
import VoicingQuickControl from '../../../../scenery-phet/js/accessibility/speaker/VoicingQuickControl.js';
import levelSpeakerModel from '../../../../scenery-phet/js/accessibility/speaker/levelSpeakerModel.js';
import ResetAllButton from '../../../../scenery-phet/js/buttons/ResetAllButton.js';
import sceneryPhetStrings from '../../../../scenery-phet/js/sceneryPhetStrings.js';
Expand Down Expand Up @@ -408,7 +408,7 @@ class JohnTravoltageView extends ScreenView {
highlightTarget: resetAllButton
} ) );

const quickControl = new SelfVoicingQuickControl( webSpeaker, {
const quickControl = new VoicingQuickControl( webSpeaker, {
createDetailsContent: this.createSelfVoicingSceneDescription.bind( this ),
createHintContent: () => {
let hintString = selfVoicingContentHintString;
Expand Down

0 comments on commit 04591f7

Please sign in to comment.