diff options
| author | bobzel <zzzman@gmail.com> | 2021-08-22 14:21:11 -0400 |
|---|---|---|
| committer | bobzel <zzzman@gmail.com> | 2021-08-22 14:21:11 -0400 |
| commit | 529e1cdb46a3af4fc44ad2bff6afd879fd1558ad (patch) | |
| tree | 09aeac1754026f3d9f83f6c5aae3ebaf8f56522b /src/client/views/nodes/trails/PresBox.tsx | |
| parent | 3051d9a16dff8efbf4d32465812093cae7508c74 (diff) | |
started to fix issues with recognizing ink strokes. fixed minimizing presentation box by fixing TabDocViews to provide a working removeDocument prop
Diffstat (limited to 'src/client/views/nodes/trails/PresBox.tsx')
| -rw-r--r-- | src/client/views/nodes/trails/PresBox.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/nodes/trails/PresBox.tsx b/src/client/views/nodes/trails/PresBox.tsx index 5cb9866f8..cfc3e75cc 100644 --- a/src/client/views/nodes/trails/PresBox.tsx +++ b/src/client/views/nodes/trails/PresBox.tsx @@ -605,7 +605,7 @@ export class PresBox extends ViewBoxBaseComponent<FieldViewProps, PresBoxSchema> this.layoutDoc.presStatus = PresStatus.Edit; Doc.RemoveDocFromList((Doc.UserDoc().myOverlayDocs as Doc), undefined, this.rootDoc); CollectionDockingView.AddSplit(this.rootDoc, "right"); - } else if (this.layoutDoc.context && docView) { + } else if ((true || this.layoutDoc.context) && docView) { console.log("case 2"); this.layoutDoc.presStatus = PresStatus.Edit; clearTimeout(this._presTimer); |
