Hum... not sure that is this one, the patch from the FLEX-33231 shown :
@@ -796,7 +796,7 @@
if (visibleFlag)
showModalWindow(o, sm, false);
- else
+ else if (popup)
popup.visible = visibleFlag;
if (hasEventListener("createdModalWindow"))
The one I included from the dev branch shown:
if (hasEventListener("updateModalMask"))
@@ -1443,7 +1443,7 @@ public class PopUpManagerImpl extends Ev
for (var i:int = 0; i < n; i++)
{
var o:PopUpData = popupInfo[i];
- if (o && o != p)
+ if (o && o != p && o.owner.accessibilityProperties)
{
o.owner.accessibilityProperties.silent = true;
}
-----Message d'origine-----
From: Justin Mclean
Sent: Monday, February 18, 2013 1:36 AM
To: dev@flex.apache.org
Subject: Re: Apache Flex 4.9.1
Hi,
I ran the tests with and it's ok
All good then.
I guess that's the fix for FLEX-33379 but I wasn't able to determine who
did it nor when.
It's this one:
https://issues.apache.org/jira/browse/FLEX-33231
Looks to me like 33379 is a duplicate and can be closed.
Justin