aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authormonikahedman <monika_hedman@brown.edu>2020-02-05 10:25:23 -0500
committermonikahedman <monika_hedman@brown.edu>2020-02-05 10:25:23 -0500
commit4cc2472c5e2d16ac5bc60a919150d1df5d6f4129 (patch)
treefecf728829362603c2573e9e7f9a6b8e7c4ef961 /src
parentc064e99e39599665156eb8c67b0ae808ce418428 (diff)
ready
Diffstat (limited to 'src')
-rw-r--r--src/client/views/animationtimeline/Timeline.tsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/animationtimeline/Timeline.tsx b/src/client/views/animationtimeline/Timeline.tsx
index 68b0ce80c..f74d4c71e 100644
--- a/src/client/views/animationtimeline/Timeline.tsx
+++ b/src/client/views/animationtimeline/Timeline.tsx
@@ -454,7 +454,7 @@ export class Timeline extends React.Component<FieldViewProps> {
<div className="time-box overview-tool" style={{ display: this._timelineVisible ? "flex" : "none" }}>
<div key="time-text" className="animation-text" style={{ visibility: this.props.Document.isATOn ? "visible" : "hidden", display: this.props.Document.isATOn ? "flex" : "none" }}>{lengthString}</div>
<input className="time-input" style={{ visibility: this.props.Document.isATOn ? "visible" : "hidden", display: this.props.Document.isATOn ? "flex" : "none" }} placeholder={String(Math.floor(this._time) / 1000) + " s"} ref={this._timeInputRef} onKeyDown={this.onTimeInput} />
- <div style={{ width: "100%", backgroundColor: "red", display: !this.props.Document.isATOn ? "flex" : "none" }}>{this.getCurrentTime()}</div>
+ <div style={{ width: "100%", display: !this.props.Document.isATOn ? "flex" : "none" }}>Current: {this.getCurrentTime()}</div>
</div>
</div>
</div>