You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@royale.apache.org by gr...@apache.org on 2022/03/16 05:24:25 UTC

[royale-asjs] branch develop updated: match internal 'textSet' state checks when using data setter for mx TextInput

This is an automated email from the ASF dual-hosted git repository.

gregdove pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/royale-asjs.git


The following commit(s) were added to refs/heads/develop by this push:
     new 0a7ff99  match internal 'textSet' state checks when using data setter for mx TextInput
     new d96e318  Merge branch 'develop' of https://github.com/apache/royale-asjs into develop
0a7ff99 is described below

commit 0a7ff99fd9fc7d98e87c7348ec89bce939254402
Author: greg-dove <gr...@gmail.com>
AuthorDate: Wed Mar 16 18:22:34 2022 +1300

    match internal 'textSet' state checks when using data setter for mx TextInput
---
 frameworks/projects/MXRoyale/src/main/royale/mx/controls/TextInput.as | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/frameworks/projects/MXRoyale/src/main/royale/mx/controls/TextInput.as b/frameworks/projects/MXRoyale/src/main/royale/mx/controls/TextInput.as
index e76b02b..47b0f30 100644
--- a/frameworks/projects/MXRoyale/src/main/royale/mx/controls/TextInput.as
+++ b/frameworks/projects/MXRoyale/src/main/royale/mx/controls/TextInput.as
@@ -948,6 +948,7 @@ public class TextInput extends UIComponent implements ITextInput
      */
     public function set htmlText(value:String):void
     {
+        textSet = true;
 		COMPILE::SWF
 		{
 			ITextModel(model).html = value;
@@ -1347,6 +1348,7 @@ public class TextInput extends UIComponent implements ITextInput
      */
     public function set text(value:String):void
     {
+        textSet = true;
 		COMPILE::SWF
 		{
 			inSetter = true;