diff options
author | Sunil Shetye | 2018-07-15 07:29:25 +0530 |
---|---|---|
committer | Sunil Shetye | 2018-07-16 15:31:24 +0530 |
commit | 1896e61799fda88188ffc3a8df12a4029361048c (patch) | |
tree | 08454cae6871e080e52d8087369ee43acc0a48d0 /js/Misc/LOGICAL_OP.js | |
parent | 92f8a251bbaeddf6ec034722a3079d865517d650 (diff) | |
download | sci2js-1896e61799fda88188ffc3a8df12a4029361048c.tar.gz sci2js-1896e61799fda88188ffc3a8df12a4029361048c.tar.bz2 sci2js-1896e61799fda88188ffc3a8df12a4029361048c.zip |
support string vector also
Diffstat (limited to 'js/Misc/LOGICAL_OP.js')
-rw-r--r-- | js/Misc/LOGICAL_OP.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/js/Misc/LOGICAL_OP.js b/js/Misc/LOGICAL_OP.js index ce52871a..cdb9ed51 100644 --- a/js/Misc/LOGICAL_OP.js +++ b/js/Misc/LOGICAL_OP.js @@ -118,7 +118,7 @@ function LOGICAL_OP() { var label = "NOT"; } this.graphics.exprs = new ScilabDouble(this.exprs); - this.graphics.style = new ScilabDouble(["blockWithLabel;displayedLabel="+label]); + this.graphics.style = new ScilabString(["blockWithLabel;displayedLabel="+label]); this.x.graphics = this.graphics; this.x.model = this.model; break; |