You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flex.apache.org by bi...@apache.org on 2014/12/22 20:58:01 UTC

git commit: [flex-sdk] [refs/heads/release4.14.0] - Use legacy BusyIndicator default sizes (new sizes were breaking Mustella tests)

Repository: flex-sdk
Updated Branches:
  refs/heads/release4.14.0 dc784d370 -> 91d8cfa31


Use legacy BusyIndicator default sizes (new sizes were breaking Mustella tests)


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

Branch: refs/heads/release4.14.0
Commit: 91d8cfa31048825691f96a1b812d5b7112439f23
Parents: dc784d3
Author: OmPrakash Muppirala <bi...@gmail.com>
Authored: Mon Dec 22 11:52:53 2014 -0800
Committer: OmPrakash Muppirala <bi...@gmail.com>
Committed: Mon Dec 22 11:54:39 2014 -0800

----------------------------------------------------------------------
 .../src/spark/skins/ios7/BusyIndicatorSkin.as           | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/91d8cfa3/frameworks/projects/mobiletheme/src/spark/skins/ios7/BusyIndicatorSkin.as
----------------------------------------------------------------------
diff --git a/frameworks/projects/mobiletheme/src/spark/skins/ios7/BusyIndicatorSkin.as b/frameworks/projects/mobiletheme/src/spark/skins/ios7/BusyIndicatorSkin.as
index 16620d4..9f8e42f 100644
--- a/frameworks/projects/mobiletheme/src/spark/skins/ios7/BusyIndicatorSkin.as
+++ b/frameworks/projects/mobiletheme/src/spark/skins/ios7/BusyIndicatorSkin.as
@@ -65,32 +65,32 @@ package spark.skins.ios7
 			{	
 				case DPIClassification.DPI_640:
 				{
-					busyIndicatorDiameter = 144;
+					busyIndicatorDiameter = 104;
 					break;
 				}
 				case DPIClassification.DPI_480:
 				{
-					busyIndicatorDiameter = 108;
+					busyIndicatorDiameter = 80;
 					break;
 				}		
 				case DPIClassification.DPI_320:
 				{
-					busyIndicatorDiameter = 72;
+					busyIndicatorDiameter = 52;
 					break;
 				}
 				case DPIClassification.DPI_240:
 				{
-					busyIndicatorDiameter = 54;
+					busyIndicatorDiameter = 40;
 					break;
 				}
 				case DPIClassification.DPI_120:
 				{
-					busyIndicatorDiameter = 27;
+					busyIndicatorDiameter = 20;
 					break;
 				}
 				default://160 DPI
 				{
-					busyIndicatorDiameter = 36;
+					busyIndicatorDiameter = 20;
 					break;
 				}
 			}