Skip to content

Commit

Permalink
Mark attributes protected, see #45
Browse files Browse the repository at this point in the history
  • Loading branch information
samreid committed Mar 4, 2022
1 parent 0eee9d0 commit f32634c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions js/common/view/CASScreenView.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@ export type CASScreenViewOptions = CASScreenViewSelfOptions & ScreenViewOptions;

class CASScreenView extends ScreenView {

readonly topCheckboxPanel: TopRepresentationCheckboxGroup; // TODO: can these be private or protected?
readonly bottomCheckboxPanel: BottomRepresentationCheckboxGroup;
protected readonly topCheckboxPanel: TopRepresentationCheckboxGroup;
protected readonly bottomCheckboxPanel: BottomRepresentationCheckboxGroup;

protected readonly resetAllButton: ResetAllButton;
protected readonly modelViewTransform: ModelViewTransform2;
Expand Down

0 comments on commit f32634c

Please sign in to comment.