diff options
-rw-r--r-- | .gitignore | 1 | ||||
-rw-r--r-- | desktop/sources/scripts/core/library.js | 2 |
2 files changed, 2 insertions, 1 deletions
@@ -2,3 +2,4 @@ node_modules/ builds/ .DS_Store */.DS_Store +.vscode/
\ No newline at end of file diff --git a/desktop/sources/scripts/core/library.js b/desktop/sources/scripts/core/library.js index 9319ec1..8939466 100644 --- a/desktop/sources/scripts/core/library.js +++ b/desktop/sources/scripts/core/library.js @@ -395,7 +395,7 @@ library.v = function OperatorV (orca, x, y, passive) { const write = this.listen(this.ports.write) const read = this.listen(this.ports.read) if (write === '.' && read !== '.') { - this.addPort('output', { x: 0, y: 1 }) + this.addPort('output', { x: 0, y: 1, output: true }) } if (write !== '.') { orca.variables[write] = read |