aboutsummaryrefslogtreecommitdiff
path: root/lib/systems/create_coupling_line.js
diff options
context:
space:
mode:
authorBen Beltran <ben@nsovocal.com>2020-03-09 15:02:35 -0500
committerBen Beltran <ben@nsovocal.com>2020-03-09 15:02:35 -0500
commit7741a3cc37662ab2ff9606bdaffc0317b79a8dd9 (patch)
tree1bee45d2821debe3c6e7e2ab40250218d251097a /lib/systems/create_coupling_line.js
parentbb8d5ef47baf7ad16a1bc58526f81ce332b090d6 (diff)
Use new lib componentsHEADmain
Diffstat (limited to 'lib/systems/create_coupling_line.js')
-rw-r--r--lib/systems/create_coupling_line.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/systems/create_coupling_line.js b/lib/systems/create_coupling_line.js
index 8e5e9d7..13aca78 100644
--- a/lib/systems/create_coupling_line.js
+++ b/lib/systems/create_coupling_line.js
@@ -85,6 +85,7 @@ export default class CreateCouplingLineSystem extends System {
initialPosition = true;
continue;
}
+
lineGraphic = lineGraphic.lineTo(position.x, position.y);
}
}
@@ -92,5 +93,5 @@ export default class CreateCouplingLineSystem extends System {
rootGraphic.addChild(lineGraphic);
}
}
-};
+}