diff options
| author | andrewdkim <adkim414@gmail.com> | 2019-09-24 16:50:23 -0400 |
|---|---|---|
| committer | andrewdkim <adkim414@gmail.com> | 2019-09-24 16:50:23 -0400 |
| commit | bf8907cfc3e005f2ce6756820d9b3f9de35f1807 (patch) | |
| tree | ac91da87a1ca51551535b817d5adc5bb681b6cf5 /src/client/views/animationtimeline/Timeline.tsx | |
| parent | 1307760412379a07b02f9148311bd9d22ed758b8 (diff) | |
brushing
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 c50ffa51b..875a0b8f3 100644 --- a/src/client/views/animationtimeline/Timeline.tsx +++ b/src/client/views/animationtimeline/Timeline.tsx @@ -423,7 +423,7 @@ export class Timeline extends React.Component<FieldViewProps> { </div> </div> <div key="timeline_title"className="title-container" ref={this._titleContainer}> - {DocListCast(this.children).map(doc => <div className="datapane"><p>{doc.title}</p></div>)} + {DocListCast(this.children).map(doc => <div className="datapane" onPointerOver={() => {Doc.BrushDoc(doc);}} onPointerOut={() => {Doc.UnBrushDoc(doc);}}><p>{doc.title}</p></div>)} </div> <div key="timeline_resize" onPointerDown={this.onResizeDown}> <FontAwesomeIcon className="resize" icon={faGripLines} /> |
