Feature: Readonly support to editable text widgets

This commit is contained in:
JCDraffin 2023-05-23 08:48:17 -05:00
parent a487424f1d
commit 4bc013e3dd
1 changed files with 2 additions and 0 deletions

View File

@ -12214,6 +12214,8 @@ class TextDisplayHelper : Widget {
});
this.addEventListener((scope CharEvent ce) {
if(readonly)
return;
if(ce.character < 32 && ce.character != '\t' && ce.character != '\n' && ce.character != '\b')
return; // skip the ctrl+x characters we don't care about as plain text