File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -95,18 +95,18 @@ export class CommentView implements IRenderedElement {
9595 private resizePointerMoveListener : browserEvents . Data | null = null ;
9696
9797 /** Whether this comment view is currently being disposed or not. */
98- private disposing = false ;
98+ protected disposing = false ;
9999
100100 /** Whether this comment view has been disposed or not. */
101- private disposed = false ;
101+ protected disposed = false ;
102102
103103 /** Size of this comment when the resize drag was initiated. */
104104 private preResizeSize ?: Size ;
105105
106106 /** The default size of newly created comments. */
107107 static defaultCommentSize = new Size ( 120 , 100 ) ;
108108
109- constructor ( private readonly workspace : WorkspaceSvg ) {
109+ constructor ( readonly workspace : WorkspaceSvg ) {
110110 this . svgRoot = dom . createSvgElement ( Svg . G , {
111111 'class' : 'blocklyComment blocklyEditable blocklyDraggable' ,
112112 } ) ;
You can’t perform that action at this time.
0 commit comments