You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flex.apache.org by er...@apache.org on 2014/12/23 08:15:09 UTC

[1/3] git commit: [flex-sdk] [refs/heads/develop] - Use legacy BusyIndicator default sizes (new sizes were breaking Mustella tests)

Repository: flex-sdk
Updated Branches:
  refs/heads/develop 7ace30106 -> e94340658


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/ff7e1131
Tree: http://git-wip-us.apache.org/repos/asf/flex-sdk/tree/ff7e1131
Diff: http://git-wip-us.apache.org/repos/asf/flex-sdk/diff/ff7e1131

Branch: refs/heads/develop
Commit: ff7e1131567519b6412f197d01fc74566274c70a
Parents: 7ace301
Author: OmPrakash Muppirala <bi...@gmail.com>
Authored: Mon Dec 22 11:52:53 2014 -0800
Committer: Erik de Bruin <er...@ixsoftware.nl>
Committed: Tue Dec 23 08:12:28 2014 +0100

----------------------------------------------------------------------
 .../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/ff7e1131/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;
 				}
 			}


[2/3] git commit: [flex-sdk] [refs/heads/develop] - In legacy mobile skin for SpinnerList (and hence DateSpinner) make accent color same as default color. This should fix the breaking Mustella tests for SpinnerList and DateSpinner

Posted by er...@apache.org.
In legacy mobile skin for SpinnerList (and hence DateSpinner) make accent color same as default color.  This should fix the breaking Mustella tests for SpinnerList and DateSpinner


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

Branch: refs/heads/develop
Commit: 5182a3430e3834c235b16f91dc98210c6fe93a1b
Parents: ff7e113
Author: OmPrakash Muppirala <bi...@gmail.com>
Authored: Mon Dec 22 12:16:43 2014 -0800
Committer: Erik de Bruin <er...@ixsoftware.nl>
Committed: Tue Dec 23 08:12:29 2014 +0100

----------------------------------------------------------------------
 frameworks/projects/mobiletheme/defaults.css | 2 ++
 1 file changed, 2 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/5182a343/frameworks/projects/mobiletheme/defaults.css
----------------------------------------------------------------------
diff --git a/frameworks/projects/mobiletheme/defaults.css b/frameworks/projects/mobiletheme/defaults.css
index c4bed86..bd1ff7a 100644
--- a/frameworks/projects/mobiletheme/defaults.css
+++ b/frameworks/projects/mobiletheme/defaults.css
@@ -267,6 +267,8 @@ SkinnableTextBase:disabledWithPrompt
 SpinnerList
 {
 	skinClass: ClassReference("spark.skins.mobile.SpinnerListSkin");
+	color: #000000;
+	accentColor: #000000;
 }
 
 SpinnerListContainer


[3/3] git commit: [flex-sdk] [refs/heads/develop] - Legacy mobile theme's BusyIndicator should like the iOS version

Posted by er...@apache.org.
Legacy mobile theme's BusyIndicator should like the iOS version

Conflicts:
	frameworks/projects/mobiletheme/defaults.css


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

Branch: refs/heads/develop
Commit: e9434065816eabe98aaae89b9093b58fcecc2346
Parents: 5182a34
Author: OmPrakash Muppirala <bi...@gmail.com>
Authored: Mon Dec 22 16:06:11 2014 -0800
Committer: Erik de Bruin <er...@ixsoftware.nl>
Committed: Tue Dec 23 08:14:36 2014 +0100

----------------------------------------------------------------------
 frameworks/projects/mobiletheme/defaults.css | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/e9434065/frameworks/projects/mobiletheme/defaults.css
----------------------------------------------------------------------
diff --git a/frameworks/projects/mobiletheme/defaults.css b/frameworks/projects/mobiletheme/defaults.css
index bd1ff7a..7a6548c 100644
--- a/frameworks/projects/mobiletheme/defaults.css
+++ b/frameworks/projects/mobiletheme/defaults.css
@@ -101,7 +101,8 @@ ActionBar.beveled Group#actionGroup Button.emphasized
 
 BusyIndicator
 {
-	rotationInterval: 50;
+	skinClass: ClassReference("spark.skins.ios7.BusyIndicatorSkin");
+	rotationInterval: 30;  /* Must be multiples of 30 */
 }
 
 Button