aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/PropertiesView.tsx
diff options
context:
space:
mode:
authorbobzel <zzzman@gmail.com>2023-05-16 21:21:03 -0400
committerbobzel <zzzman@gmail.com>2023-05-16 21:21:03 -0400
commit39a4e8107f659a9c1f1374482d12ba9f7a1bc5e4 (patch)
tree1a3572e0bdd0ab860c70bafda406eb97146359d0 /src/client/views/PropertiesView.tsx
parentd3ecf7bdacd925fcd293a300c53206b12bee8ce9 (diff)
updated some ink field names
Diffstat (limited to 'src/client/views/PropertiesView.tsx')
-rw-r--r--src/client/views/PropertiesView.tsx4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/client/views/PropertiesView.tsx b/src/client/views/PropertiesView.tsx
index 297820e37..75514a090 100644
--- a/src/client/views/PropertiesView.tsx
+++ b/src/client/views/PropertiesView.tsx
@@ -826,7 +826,7 @@ export class PropertiesView extends React.Component<PropertiesViewProps> {
return this.getField('stroke_width') || '1';
}
@computed get markScal() {
- return Number(this.getField('strokeMakerScale') || '1');
+ return Number(this.getField('stroke_markerScale') || '1');
}
@computed get markHead() {
return this.getField('stroke_startMarker') || '';
@@ -843,7 +843,7 @@ export class PropertiesView extends React.Component<PropertiesViewProps> {
this.selectedDoc && (this.selectedDoc.stroke_dash = value ? this._lastDash : undefined);
}
set markScal(value) {
- this.selectedDoc && (this.selectedDoc.strokeMarkerScale = Number(value));
+ this.selectedDoc && (this.selectedDoc.stroke_markerScale = Number(value));
}
set widthStk(value) {
this.selectedDoc && (this.selectedDoc.stroke_width = Number(value));