You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flex.apache.org by jm...@apache.org on 2013/04/16 06:49:16 UTC

[42/50] [abbrv] git commit: [flex-sdk] - FLEX-33377 fixed

FLEX-33377 fixed

git-svn-id: https://svn.apache.org/repos/asf/flex/sdk/branches/release4.9@1447096 13f79535-47bb-0310-9956-ffa450edef68


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

Branch: refs/heads/develop
Commit: 7995136e150b3bd2764b671044bcc38ebf64333d
Parents: a303c43
Author: Frédéric Thomas <ft...@apache.org>
Authored: Sun Feb 17 22:52:14 2013 +0000
Committer: Frédéric Thomas <ft...@apache.org>
Committed: Sun Feb 17 22:52:14 2013 +0000

----------------------------------------------------------------------
 .../framework/src/mx/managers/PopUpManagerImpl.as  |    4 ++--
 .../baselines/dropShadowVisible_css_Alert.png      |  Bin 12180 -> 12182 bytes
 .../baselines/dropShadowVisible_default_Alert.png  |  Bin 16297 -> 16308 bytes
 3 files changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/7995136e/frameworks/projects/framework/src/mx/managers/PopUpManagerImpl.as
----------------------------------------------------------------------
diff --git a/frameworks/projects/framework/src/mx/managers/PopUpManagerImpl.as b/frameworks/projects/framework/src/mx/managers/PopUpManagerImpl.as
index a7c0675..1483eea 100644
--- a/frameworks/projects/framework/src/mx/managers/PopUpManagerImpl.as
+++ b/frameworks/projects/framework/src/mx/managers/PopUpManagerImpl.as
@@ -764,7 +764,7 @@ public class PopUpManagerImpl extends EventDispatcher implements IPopUpManager
         // trace("createModalWindow: drawing modal " + s);
         g.clear();
         g.beginFill(c, 100);
-        g.drawRect(screen.x, screen.y, screen.width, screen.height);
+		g.drawRect(screen.x-1, screen.y-1, screen.width+2, screen.height+2);
         g.endFill();
 
         if (hasEventListener("updateModalMask"))
@@ -1443,7 +1443,7 @@ public class PopUpManagerImpl extends EventDispatcher implements IPopUpManager
 				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;
 					}

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/7995136e/mustella/tests/spark/styles/local/baselines/dropShadowVisible_css_Alert.png
----------------------------------------------------------------------
diff --git a/mustella/tests/spark/styles/local/baselines/dropShadowVisible_css_Alert.png b/mustella/tests/spark/styles/local/baselines/dropShadowVisible_css_Alert.png
index d3c386b..7f77dc7 100644
Binary files a/mustella/tests/spark/styles/local/baselines/dropShadowVisible_css_Alert.png and b/mustella/tests/spark/styles/local/baselines/dropShadowVisible_css_Alert.png differ

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/7995136e/mustella/tests/spark/styles/local/baselines/dropShadowVisible_default_Alert.png
----------------------------------------------------------------------
diff --git a/mustella/tests/spark/styles/local/baselines/dropShadowVisible_default_Alert.png b/mustella/tests/spark/styles/local/baselines/dropShadowVisible_default_Alert.png
index 33e304b..3d58cb1 100644
Binary files a/mustella/tests/spark/styles/local/baselines/dropShadowVisible_default_Alert.png and b/mustella/tests/spark/styles/local/baselines/dropShadowVisible_default_Alert.png differ