Merge pull request #503 from AnthonyHarwood/bugfix/TextView_clearText
Added code to clear the text
This commit is contained in:
commit
fc107f1552
|
@ -179,6 +179,10 @@ TextView.prototype.setText = function (text, redraw) {
|
||||||
};
|
};
|
||||||
|
|
||||||
TextView.prototype.clearText = function () {
|
TextView.prototype.clearText = function () {
|
||||||
|
if (this.text) {
|
||||||
|
this.setText(this.fillChar.repeat(this.text.length));
|
||||||
|
}
|
||||||
|
|
||||||
this.setText('');
|
this.setText('');
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue