aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/InkingStroke.tsx
diff options
context:
space:
mode:
authorbobzel <zzzman@gmail.com>2022-08-24 14:07:41 -0400
committerbobzel <zzzman@gmail.com>2022-08-24 14:07:41 -0400
commit94dbcc40067cb6637f7a535ff305d9452a3f40d1 (patch)
tree06372f49ea4e4d8c91fea29a6833238a0be6b1d3 /src/client/views/InkingStroke.tsx
parent542a057edbdd4661cfb5ef5d07058aa93b47a113 (diff)
made text boxes support animation frames. fixed dragging on unselected pres element ttitles. cleaned up setting ink to have animation frames.
Diffstat (limited to 'src/client/views/InkingStroke.tsx')
-rw-r--r--src/client/views/InkingStroke.tsx11
1 files changed, 0 insertions, 11 deletions
diff --git a/src/client/views/InkingStroke.tsx b/src/client/views/InkingStroke.tsx
index ceaabd0e1..dae1c10bb 100644
--- a/src/client/views/InkingStroke.tsx
+++ b/src/client/views/InkingStroke.tsx
@@ -68,17 +68,6 @@ export class InkingStroke extends ViewBoxBaseComponent<FieldViewProps>() {
componentDidMount() {
this.props.setContentView?.(this);
- this._disposers.activeFrame = reaction(
- () => this.rootDoc.activeFrame !== undefined && !(ComputedField.WithoutComputed(() => FieldValue(this.rootDoc[this.fieldKey])) instanceof ComputedField),
- () => {
- const newPoints = Cast(this.rootDoc[this.fieldKey], InkField, null).inkData;
- this.rootDoc[this.fieldKey] = ComputedField.MakeInterpolated(this.fieldKey, 'activeFrame', this.rootDoc, NumCast(this.rootDoc.activeFrame));
- const findexed = Cast(this.rootDoc[`data-indexed`], listSpec(InkField), []).slice();
- findexed[NumCast(this.rootDoc.activeFrame)] = new InkField(newPoints);
- this.rootDoc[this.fieldKey + '-indexed'] = new List<InkField>(findexed);
- },
- { fireImmediately: true }
- );
this._disposers.selfDisper = reaction(
() => this.props.isSelected(), // react to stroke being deselected by turning off ink handles
selected => !selected && (InkStrokeProperties.Instance._controlButton = false)