diff options
Diffstat (limited to 'js/MatrixOp/MATBKSL.js')
-rw-r--r-- | js/MatrixOp/MATBKSL.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/js/MatrixOp/MATBKSL.js b/js/MatrixOp/MATBKSL.js index 1abaa75b..d7302c49 100644 --- a/js/MatrixOp/MATBKSL.js +++ b/js/MatrixOp/MATBKSL.js @@ -35,14 +35,14 @@ function MATBKSL() { return options; } MATBKSL.prototype.set = function MATBKSL() { - this.typ = inverse(arguments[0]["typ"]) - this.exprs = arguments[0]["exprs"] var label = this.graphics.exprs; if (size(label,"*")==14) { label[9-1] = []; } while (true) { - [ok,this.typ,this.exprs] = scicos_getvalue("Set MATBKSL Block",["Datatype (1=real double 2=Complex)"],list("vec",1),label); + var ok = true; + this.typ = inverse(arguments[0]["typ"]); + this.exprs = arguments[0]["exprs"]; if (!ok) { break; } |