diff options
| author | bobzel <zzzman@gmail.com> | 2023-03-17 12:22:03 -0400 |
|---|---|---|
| committer | bobzel <zzzman@gmail.com> | 2023-03-17 12:22:03 -0400 |
| commit | 8aeab8c3f25c556e39f3e9e58f9c321e79459df8 (patch) | |
| tree | 1d01058a34b2fd5ca45344454dac84a4059e64d1 /src/client/views/collections/CollectionStackedTimeline.tsx | |
| parent | bdccbc7a37216ffc88920ec48f9119a8ada0be60 (diff) | |
fixed scriptingbox to remove script if text is empty. fixed scripting with capturedvariables not to cache scripts with lists of captured documents. fixed runtime warnings with stackedTimelined and AudioBox
Diffstat (limited to 'src/client/views/collections/CollectionStackedTimeline.tsx')
| -rw-r--r-- | src/client/views/collections/CollectionStackedTimeline.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/collections/CollectionStackedTimeline.tsx b/src/client/views/collections/CollectionStackedTimeline.tsx index f9249e7d5..302d4a464 100644 --- a/src/client/views/collections/CollectionStackedTimeline.tsx +++ b/src/client/views/collections/CollectionStackedTimeline.tsx @@ -565,7 +565,7 @@ export class CollectionStackedTimeline extends CollectionSubView<CollectionStack anchor, })); const maxLevel = overlaps.reduce((m, o) => Math.max(m, o.level), 0) + 2; - return ( + return this.clipDuration === 0 ? null : ( <div ref={this.createDashEventsTarget} style={{ pointerEvents: SnappingManager.GetIsDragging() ? 'all' : undefined }}> <div className="collectionStackedTimeline-timelineContainer" |
