Revert "FLEX-34222 fix selection reverting to previous typed values when second 
value (not in list) is entered"

This reverts commit 05ea4798b51a03ef94576f17512473296a5d42a1.


Project: http://git-wip-us.apache.org/repos/asf/flex-sdk/repo
Commit: http://git-wip-us.apache.org/repos/asf/flex-sdk/commit/4199d43a
Tree: http://git-wip-us.apache.org/repos/asf/flex-sdk/tree/4199d43a
Diff: http://git-wip-us.apache.org/repos/asf/flex-sdk/diff/4199d43a

Branch: refs/heads/master
Commit: 4199d43a3a7e036ac0bd7e20a13a9bb26e94c183
Parents: 0f4d0e7
Author: Om <bigosma...@gmail.com>
Authored: Fri Jun 13 15:34:25 2014 -0700
Committer: Om <bigosma...@gmail.com>
Committed: Fri Jun 13 15:34:25 2014 -0700

----------------------------------------------------------------------
 frameworks/projects/spark/src/spark/components/ComboBox.as | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/4199d43a/frameworks/projects/spark/src/spark/components/ComboBox.as
----------------------------------------------------------------------
diff --git a/frameworks/projects/spark/src/spark/components/ComboBox.as 
b/frameworks/projects/spark/src/spark/components/ComboBox.as
index 9be4b50..6ef3125 100644
--- a/frameworks/projects/spark/src/spark/components/ComboBox.as
+++ b/frameworks/projects/spark/src/spark/components/ComboBox.as
@@ -672,7 +672,6 @@ public class ComboBox extends DropDownListBase implements 
IIMESupport
             }
             else
             {
-                               selectedItem = textInput.text;
                 super.changeHighlightedSelection(CUSTOM_SELECTED_ITEM);
             }
         }
@@ -981,7 +980,7 @@ public class ComboBox extends DropDownListBase implements 
IIMESupport
                 if (selectedItem != null)
                     textInput.text = itemToLabel(selectedItem);
                 else
-                       textInput.text = "";
+                textInput.text = "";
             }
             changeHighlightedSelection(selectedIndex);
         }

Reply via email to