Skip to content

Commit

Permalink
SelfVoicingInputListener -> VoicingInputListener, see phetsims/tasks#…
Browse files Browse the repository at this point in the history
  • Loading branch information
jessegreenberg committed Mar 24, 2021
1 parent 9df829f commit 684c83a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions js/view/ISLCObjectNode.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 merge from '../../../phet-core/js/merge.js';
import StringUtils from '../../../phetcommon/js/util/StringUtils.js';
import PhetFont from '../../../scenery-phet/js/PhetFont.js';
import SelfVoicingInputListener from '../../../scenery-phet/js/accessibility/speaker/SelfVoicingInputListener.js';
import VoicingInputListener from '../../../scenery-phet/js/accessibility/speaker/VoicingInputListener.js';
import SelfVoicingWrapperNode from '../../../scenery-phet/js/accessibility/speaker/SelfVoicingWrapperNode.js';
import levelSpeakerModel from '../../../scenery-phet/js/accessibility/speaker/levelSpeakerModel.js';
import sceneryPhetStrings from '../../../scenery-phet/js/sceneryPhetStrings.js';
Expand Down Expand Up @@ -246,7 +246,7 @@ class ISLCObjectNode extends Node {
if ( phet.chipper.queryParameters.supportsSelfVoicing ) {
assert && assert( config.objectColor, 'required param, if testing self voicing features' );

this.addInputListener( new SelfVoicingInputListener( {
this.addInputListener( new VoicingInputListener( {
onFocusIn: () => {

// special behavior if the hit is from a keyboard
Expand Down

0 comments on commit 684c83a

Please sign in to comment.