diff options
| author | bobzel <zzzman@gmail.com> | 2023-10-24 13:46:36 -0400 |
|---|---|---|
| committer | bobzel <zzzman@gmail.com> | 2023-10-24 13:46:36 -0400 |
| commit | a91d5f3bdf1daf9b10a3f02acc79db7a0174a1d8 (patch) | |
| tree | 0102b90aaa01ec3f1100cd34d46153e752c9fa7b /src/client/views/nodes/trails/PresBox.tsx | |
| parent | 3141c62397071efee60510ef90df69ff04701757 (diff) | |
fixed hide before/after in trails. move ink mask to developer. fixed tangent dragging on some curves that have no initial tangent. fixed tree view highlights when dragging.
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 383b400c8..944302934 100644 --- a/src/client/views/nodes/trails/PresBox.tsx +++ b/src/client/views/nodes/trails/PresBox.tsx @@ -830,7 +830,7 @@ export class PresBox extends ViewBoxBaseComponent<FieldViewProps>() { this.childDocs.forEach((doc, index) => { const curDoc = Cast(doc, Doc, null); const tagDoc = PresBox.targetRenderedDoc(curDoc); - const itemIndexes: number[] = this.getAllIndexes(this.tagDocs, tagDoc); + const itemIndexes: number[] = this.getAllIndexes(this.tagDocs, curDoc); let opacity: Opt<number> = index === this.itemIndex ? 1 : undefined; if (curDoc.presentation_hide) { if (index !== this.itemIndex) { |
