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

Merge pull request #385 from thewhodidthis/bf#341--textbox-scroll

visual/TextInput: permanently disable substitute text
This commit is contained in:
Alain Pitiot 2021-06-11 10:18:22 +02:00 committed by GitHub
commit c753469e1c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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');
}