Corrected GetBoolean return value so it can be used with logic statements

This commit is contained in:
Brendan Robert
2014-07-06 16:59:07 -05:00
parent 5b6f50553b
commit 8648130b4b

View File

@@ -233,7 +233,7 @@ if (typeof Mythos === "undefined") {
this.setColour(54);
this.appendDummyInput()
.appendField("Get Yes or No");
this.setOutput(true, "boolean");
this.setOutput(true, "Boolean");
this.setTooltip('');
}
};