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 2012/12/22 07:32:57 UTC

svn commit: r1425249 - /incubator/flex/utilities/trunk/installer/src/InstallApacheFlex.mxml

Author: bigosmallm
Date: Sat Dec 22 06:32:57 2012
New Revision: 1425249

URL: http://svn.apache.org/viewvc?rev=1425249&view=rev
Log:
Tweaking UI controls
1.  Changed Disclaimer to be link button instead of a button
2.  Changed language selector to be a drop down list instead of a combo box

Modified:
    incubator/flex/utilities/trunk/installer/src/InstallApacheFlex.mxml

Modified: incubator/flex/utilities/trunk/installer/src/InstallApacheFlex.mxml
URL: http://svn.apache.org/viewvc/incubator/flex/utilities/trunk/installer/src/InstallApacheFlex.mxml?rev=1425249&r1=1425248&r2=1425249&view=diff
==============================================================================
--- incubator/flex/utilities/trunk/installer/src/InstallApacheFlex.mxml (original)
+++ incubator/flex/utilities/trunk/installer/src/InstallApacheFlex.mxml Sat Dec 22 06:32:57 2012
@@ -1893,9 +1893,9 @@ variables are not required because the l
 		paddingRight="20" 
 		paddingTop="5" 
 		horizontalAlign="right">
-		<s:Button 
-			label="{_viewResourceConstants.BTN_DISCLAIMER}"
-			styleName="genericBtnStyle"
+		<controls2:LinkButton 
+			text="{_viewResourceConstants.BTN_DISCLAIMER}"
+			fontWeight="bold"
 			click="{showDisclaimer()}"
 			/>
 		<s:Spacer width="100%" />
@@ -1905,9 +1905,12 @@ variables are not required because the l
 				 textAlign="right"
 				 text="{_viewResourceConstants.INFO_CURRENT_LANGUAGE}" 
 				 verticalAlign="middle"/>
-		<s:ComboBox id="_langSelect" 
-					width="184" 
-					change="_langSelect_changeHandler(event)"/>
+		<s:DropDownList id="_langSelect"
+					change="_langSelect_changeHandler(event)">
+			<s:layout>
+				<s:VerticalLayout requestedRowCount="-1" />
+			</s:layout>
+		</s:DropDownList>
 	</s:HGroup>
 	<s:Panel id="firstStepGroup" 
 			 title="{_viewResourceConstants.INFO_SELECT_DIRECTORY_INSTALL}"