You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flex.apache.org by mi...@apache.org on 2016/09/09 11:45:10 UTC

[2/2] git commit: [flex-sdk] [refs/heads/develop] - FLEX-34088 The fix for this bug became superfluous when the fix for FLEX-34078 was implemented, which also catered to this bug. So it can be safely removed (and should, because it causes other bugs - se

FLEX-34088 The fix for this bug became superfluous when the fix for FLEX-34078 was implemented, which also catered to this bug. So it can be safely removed (and should, because it causes other bugs - see the ticket).


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

Branch: refs/heads/develop
Commit: 2afdbe885c20612449006320a60bed0e3501e6ce
Parents: e6e2e44
Author: Mihai Chira <mi...@apache.org>
Authored: Fri Sep 9 13:43:56 2016 +0200
Committer: Mihai Chira <mi...@apache.org>
Committed: Fri Sep 9 13:43:56 2016 +0200

----------------------------------------------------------------------
 .../spark/components/supportClasses/DropDownController.as    | 8 --------
 1 file changed, 8 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/2afdbe88/frameworks/projects/spark/src/spark/components/supportClasses/DropDownController.as
----------------------------------------------------------------------
diff --git a/frameworks/projects/spark/src/spark/components/supportClasses/DropDownController.as b/frameworks/projects/spark/src/spark/components/supportClasses/DropDownController.as
index 9ac003e..8c7fe08 100644
--- a/frameworks/projects/spark/src/spark/components/supportClasses/DropDownController.as
+++ b/frameworks/projects/spark/src/spark/components/supportClasses/DropDownController.as
@@ -607,14 +607,6 @@ public class DropDownController extends EventDispatcher
             if (openButton && target && openButton.contains(target))
                 return;
 			
-			// don't close if something just been selected in a DropDownList
-			if (target is IUIComponent)
-			{
-                var document:Object = (target as IUIComponent).document;
-                if (("hostComponent" in document) && document.hostComponent is DropDownList)
-			        return;
-            }
-
             if (hitAreaAdditions != null)
             {
 				var length:int = hitAreaAdditions.length;