diff options
author | eleanor-park <eleanor_park@brown.edu> | 2024-11-03 16:32:28 -0500 |
---|---|---|
committer | eleanor-park <eleanor_park@brown.edu> | 2024-11-03 16:32:28 -0500 |
commit | 8847d6cf5a0eaeeddaefc71d0202247b4d2d096b (patch) | |
tree | c490c1e06057c68453f8262f83d0800c3918e084 /src/client/views/LightboxView.tsx | |
parent | 9e0b0ad736c9824d74ced46eb4b1cf96eacd55fd (diff) |
working on smart draw width bugs
Diffstat (limited to 'src/client/views/LightboxView.tsx')
-rw-r--r-- | src/client/views/LightboxView.tsx | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/client/views/LightboxView.tsx b/src/client/views/LightboxView.tsx index 65de85008..ce6b26323 100644 --- a/src/client/views/LightboxView.tsx +++ b/src/client/views/LightboxView.tsx @@ -35,7 +35,7 @@ type LightboxSavedState = { [key: string]: FieldResult; }; // prettier-ignore @observer export class LightboxView extends ObservableReactComponent<LightboxViewProps> { /** - * Determines whether a DocumentView is descendant of the lightbox view (or any of its pop-ups like the annotationPalette) + * Determines whether a DocumentView is descendant of the lightbox view (or any of its pop-ups like the stickerPalette) * @param view * @returns true if a DocumentView is descendant of the lightbox view */ @@ -211,7 +211,6 @@ export class LightboxView extends ObservableReactComponent<LightboxViewProps> { }; togglePalette = () => { this._showPalette = !this._showPalette; - // if (this._showPalette === false) AnnotationPalette.Instance.resetPalette(true); }; togglePen = () => { Doc.ActiveTool = Doc.ActiveTool === InkTool.Ink ? InkTool.None : InkTool.Ink; |