diff options
| author | bobzel <zzzman@gmail.com> | 2024-05-16 19:52:13 -0400 |
|---|---|---|
| committer | bobzel <zzzman@gmail.com> | 2024-05-16 19:52:13 -0400 |
| commit | 69e286b504c2f1bbef7d489dc675b9e54ef8d983 (patch) | |
| tree | b8243dab1a93aced50bab0cbf0e9da3e08e58f07 /src/client/views/animationtimeline/Timeline.tsx | |
| parent | 56917559cf47bba35740571e97845295dd63b424 (diff) | |
refactor/cleanup of pres animations. changed effects to start halfway through a zoom transition.
Diffstat (limited to 'src/client/views/animationtimeline/Timeline.tsx')
| -rw-r--r-- | src/client/views/animationtimeline/Timeline.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/animationtimeline/Timeline.tsx b/src/client/views/animationtimeline/Timeline.tsx index c4d35330b..d9ff21035 100644 --- a/src/client/views/animationtimeline/Timeline.tsx +++ b/src/client/views/animationtimeline/Timeline.tsx @@ -547,7 +547,7 @@ export class Timeline extends ObservableReactComponent<FieldViewProps> { <div key="timeline_info" className="info-container" onPointerDown={this.onPanDown} ref={this._infoContainer} onWheel={this.onWheelZoom}> {this.drawTicks()} <div key="timeline_scrubber" className="scrubber" style={{ transform: `translate(${this._currentBarX}px)` }}> - <div key="timeline_scrubberhead" className="scrubberhead" onPointerDown={this.onScrubberDown}></div> + <div key="timeline_scrubberhead" className="scrubberhead" onPointerDown={this.onScrubberDown} /> </div> <div key="timeline_trackbox" className="trackbox" ref={this._trackbox} style={{ width: `${this._totalLength}px` }}> {[...this.children, this._props.Document].map(doc => ( |
