Skip to content

Commit

Permalink
move AreaUnderCurveCheckbox.ts to common/view/, because it's general …
Browse files Browse the repository at this point in the history
…enough to be used in any screen
  • Loading branch information
pixelzoom committed Mar 12, 2023
1 parent a22e7e7 commit aee2231
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ import Checkbox, { CheckboxOptions } from '../../../../sun/js/Checkbox.js';
import Tandem from '../../../../tandem/js/Tandem.js';
import calculusGrapher from '../../calculusGrapher.js';
import CalculusGrapherStrings from '../../CalculusGrapherStrings.js';
import CalculusGrapherConstants from '../../common/CalculusGrapherConstants.js';
import AreaUnderCurveScrubberNode from '../../common/view/AreaUnderCurveScrubberNode.js';
import CalculusGrapherConstants from '../CalculusGrapherConstants.js';
import AreaUnderCurveScrubberNode from './AreaUnderCurveScrubberNode.js';

export default class AreaUnderCurveCheckbox extends Checkbox {

Expand Down
2 changes: 1 addition & 1 deletion js/integral/view/IntegralScreenView.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import CalculusGrapherScreenView, { CalculusGrapherScreenViewOptions } from '../
import IntegralModel from '../model/IntegralModel.js';
import NetSignedAreaAccordionBox from '../../common/view/NetSignedAreaAccordionBox.js';
import PickRequired from '../../../../phet-core/js/types/PickRequired.js';
import AreaUnderCurveCheckbox from './AreaUnderCurveCheckbox.js';
import AreaUnderCurveCheckbox from '../../common/view/AreaUnderCurveCheckbox.js';

type SelfOptions = EmptySelfOptions;

Expand Down

0 comments on commit aee2231

Please sign in to comment.