Skip to content

Commit

Permalink
no hint response upon selection, #699
Browse files Browse the repository at this point in the history
  • Loading branch information
zepumph committed Feb 24, 2022
1 parent 6ab0a64 commit b6cbbf1
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion js/buttons/RectangularRadioButton.ts
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,9 @@ class RectangularRadioButton<T> extends RectangularButton {
buttonModel.downProperty.link( down => {
if ( !down && ( buttonModel.overProperty.get() || buttonModel.focusedProperty.get() ) && !buttonModel.interrupted ) {
this.fire();
this.voicingSpeakFullResponse();
this.voicingSpeakFullResponse( {
hintResponse: null
} );
}
} );

Expand Down

0 comments on commit b6cbbf1

Please sign in to comment.