diff options
author | Devine Lu Linvega <[email protected]> | 2020-11-09 13:16:31 -0800 |
---|---|---|
committer | GitHub <[email protected]> | 2020-11-09 13:16:31 -0800 |
commit | def2dd9c8ff565daa879a87e49ad8cd65e55c736 (patch) | |
tree | 208e3134e59c15064577286b0e139a286a74e388 /desktop | |
parent | 5cd09b2619e9f569120724cb5678fff91ced21b1 (diff) | |
parent | 54d377b28fb1d0f5c1600117061d2be6e475a25d (diff) | |
download | Orca-def2dd9c8ff565daa879a87e49ad8cd65e55c736.tar.gz Orca-def2dd9c8ff565daa879a87e49ad8cd65e55c736.zip |
Merge pull request #252 from njanssen/operator-v-output
Operator V output port aesthetics
Diffstat (limited to 'desktop')
-rw-r--r-- | desktop/sources/scripts/core/library.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/desktop/sources/scripts/core/library.js b/desktop/sources/scripts/core/library.js index fae31ba..3136c1d 100644 --- a/desktop/sources/scripts/core/library.js +++ b/desktop/sources/scripts/core/library.js @@ -400,7 +400,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 |