Skip to content

Commit

Permalink
Remove debug salmon color, see #194
Browse files Browse the repository at this point in the history
  • Loading branch information
samreid committed May 12, 2023
1 parent 2424a5d commit 6f27893
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion js/mean-and-median/view/MeanAndMedianAccordionBox.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ export default class MeanAndMedianAccordionBox extends CAVAccordionBox {
const backgroundShape = CAVConstants.ACCORDION_BOX_CONTENTS_SHAPE_MEAN_AND_OR_MEDIAN;
const backgroundNode = new Path( backgroundShape, {
clipArea: backgroundShape,
fill: new Color( 255, 0, 0, 0.2 )
fill: null
} );

// There is only one scene in the mean and median screen
Expand Down
2 changes: 1 addition & 1 deletion js/variability/view/VariabilityAccordionBox.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ export default class VariabilityAccordionBox extends CAVAccordionBox {
const backgroundShape = CAVConstants.ACCORDION_BOX_CONTENTS_SHAPE_VARIABILITY;
const backgroundNode = new Path( backgroundShape, {
clipArea: backgroundShape,
fill: new Color( 255, 0, 0, 0.2 )
fill: null
} );

const currentProperty = new DerivedProperty( [ model.selectedVariabilityProperty ], selectedVariability =>
Expand Down

0 comments on commit 6f27893

Please sign in to comment.