diff options
author | neauoire <[email protected]> | 2020-04-16 07:56:46 +0900 |
---|---|---|
committer | neauoire <[email protected]> | 2020-04-16 07:56:46 +0900 |
commit | 15f3d69c14812f918711bc38f267cf7270a4656b (patch) | |
tree | 83d670696a06f32ed11a2661505cd907c6f2c099 /desktop | |
parent | 2390227dd5b93c9da0093a598bcbf77b65ca5412 (diff) | |
download | Orca-15f3d69c14812f918711bc38f267cf7270a4656b.tar.gz Orca-15f3d69c14812f918711bc38f267cf7270a4656b.zip |
Updated name for b operator
Diffstat (limited to 'desktop')
-rw-r--r-- | desktop/sources/scripts/client.js | 2 | ||||
-rw-r--r-- | desktop/sources/scripts/core/library.js | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/desktop/sources/scripts/client.js b/desktop/sources/scripts/client.js index f30677d..792a684 100644 --- a/desktop/sources/scripts/client.js +++ b/desktop/sources/scripts/client.js @@ -12,7 +12,7 @@ /* global Theme */ function Client () { - this.version = 173 + this.version = 174 this.library = library this.theme = new Theme(this) diff --git a/desktop/sources/scripts/core/library.js b/desktop/sources/scripts/core/library.js index 1cf7453..0171da4 100644 --- a/desktop/sources/scripts/core/library.js +++ b/desktop/sources/scripts/core/library.js @@ -25,7 +25,7 @@ library.a = function OperatorA (orca, x, y, passive) { library.b = function OperatorL (orca, x, y, passive) { Operator.call(this, orca, x, y, 'b', passive) - this.name = 'between' + this.name = 'subtract' this.info = 'Outputs subtraction of inputs' this.ports.a = { x: -1, y: 0 } |