Skip to content

Commit

Permalink
move isSettingPhetioStateProperty to tandem/, phetsims/tandem#294
Browse files Browse the repository at this point in the history
Signed-off-by: Michael Kauzmann <[email protected]>
  • Loading branch information
zepumph committed May 31, 2023
1 parent 09a047d commit 0ce8b8e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion js/number-play-main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ import numberPlayUtteranceQueue from './common/view/numberPlayUtteranceQueue.js'
import LanguageAndVoiceControl from '../../number-suite-common/js/common/view/LanguageAndVoiceControl.js';
import localeProperty from '../../joist/js/i18n/localeProperty.js';
import MathSymbols from '../../scenery-phet/js/MathSymbols.js';
import isSettingPhetioStateProperty from '../../tandem/js/isSettingPhetioStateProperty.js';

const numberPlayTitleStringProperty = NumberPlayStrings[ 'number-play' ].titleStringProperty;
const LAB_SCREEN_SYMBOLS = [ MathSymbols.EQUAL_TO, MathSymbols.PLUS, MathSymbols.MINUS ];
Expand Down Expand Up @@ -94,7 +95,7 @@ simLauncher.launch( () => {
sim.isConstructionCompleteProperty,
sim.browserTabVisibleProperty,
sim.activeProperty,
sim.isSettingPhetioStateProperty,
isSettingPhetioStateProperty,
audioManager.audioEnabledProperty
], ( simConstructionComplete, simVisible, simActive, simSettingPhetioState, audioEnabled ) => {
return simConstructionComplete && simVisible && simActive && !simSettingPhetioState && audioEnabled;
Expand Down

0 comments on commit 0ce8b8e

Please sign in to comment.