diff options
| author | bobzel <zzzman@gmail.com> | 2021-02-26 15:12:28 -0500 |
|---|---|---|
| committer | bobzel <zzzman@gmail.com> | 2021-02-26 15:12:28 -0500 |
| commit | daa1e3ddf585f5fe237c100504130a3eae204252 (patch) | |
| tree | a74b132d3f6b8e62db67a30aca4e336925f50cca /src/client/views/nodes/DocumentLinksButton.tsx | |
| parent | fce6c26e2f62ffc21702a2edc64e0ee00828825e (diff) | |
fixed serialization error handling to not kill Dash - bad list items prevented tabs from being created. cleaned up document fields a little more - switched layers to _layerTags, got rid of a couple unused fields.
Diffstat (limited to 'src/client/views/nodes/DocumentLinksButton.tsx')
| -rw-r--r-- | src/client/views/nodes/DocumentLinksButton.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/nodes/DocumentLinksButton.tsx b/src/client/views/nodes/DocumentLinksButton.tsx index 18cabc309..96b6bea8c 100644 --- a/src/client/views/nodes/DocumentLinksButton.tsx +++ b/src/client/views/nodes/DocumentLinksButton.tsx @@ -106,7 +106,7 @@ export class DocumentLinksButton extends React.Component<DocumentLinksButtonProp const alias = Doc.MakeAlias(otherdoc); alias.x = wid; alias.y = 0; - alias.lockedPosition = false; + alias._lockedPosition = false; wid += otherdoc[WidthSym](); Doc.AddDocToList(Doc.GetProto(target), "data", alias); } |
