1
0
mirror of https://github.com/psychopy/psychojs.git synced 2025-05-12 16:48:10 +00:00

visual/TextInput: permanently disable substitute text

This commit is contained in:
Sotiri Bakagiannis 2021-06-10 18:38:54 +01:00
parent b9aee09474
commit 13461b9169

View File

@ -56,7 +56,7 @@ export class TextInput extends PIXI.Container
this._selection = [0, 0];
this._restrict_value = '';
this._createDOMInput();
this.substituteText = true;
this.substituteText = false;
this._setState('DEFAULT');
}