Skip to content

Commit

Permalink
Omit capacitors, inductors and AC sources from DC tandem tree, see ph…
Browse files Browse the repository at this point in the history
  • Loading branch information
samreid committed Jan 28, 2022
1 parent 758895f commit 1d1731b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion js/blackbox/model/BlackBoxSceneModel.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ class BlackBoxSceneModel extends CircuitConstructionKitModel {
* @param {Tandem} tandem
*/
constructor( trueBlackBoxCircuitObject, tandem ) {
super( tandem, {
super( true, tandem, {
revealing: false,
blackBoxStudy: true
} );
Expand Down
2 changes: 1 addition & 1 deletion js/explore/model/ExploreModel.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import circuitConstructionKitBlackBoxStudy from '../../circuitConstructionKitBla

class ExploreModel extends CircuitConstructionKitModel {
constructor( tandem ) {
super( tandem, { blackBoxStudy: true } );
super( true, tandem, { blackBoxStudy: true } );
}
}

Expand Down

0 comments on commit 1d1731b

Please sign in to comment.