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/10/07 10:46:49 UTC

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

Author: bigosmallm
Date: Sun Oct  7 08:46:48 2012
New Revision: 1395248

URL: http://svn.apache.org/viewvc?rev=1395248&view=rev
Log:
Moved license link to on top of the license text area.  

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=1395248&r1=1395247&r2=1395248&view=diff
==============================================================================
--- incubator/flex/utilities/trunk/installer/src/InstallApacheFlex.mxml (original)
+++ incubator/flex/utilities/trunk/installer/src/InstallApacheFlex.mxml Sun Oct  7 08:46:48 2012
@@ -1996,12 +1996,24 @@ variables are not required because the l
 					<s:VerticalLayout />
 				</s:layout>
 			</s:List>
-			<s:TextArea id="optionalInstallsTxtArea" text="{_viewResourceConstants.INFO_NEED_TO_READ_AND_AGREE_TO_LICENSE}"
-						fontSize="12" 
-						width="50%" 
-						height="100%" 
-						verticalScrollPolicy="off" 
-						editable="false"/>
+			<s:VGroup width="50%" 
+					  height="100%"
+					  horizontalAlign="center"
+					  gap="5">
+				<controls2:LinkButton id="licenseLinkBtn"
+									  text="{_currentLicenseLabel}"
+									  fontWeight="bold"
+									  click="{handleLicenceBtnClick(event)}"
+									  paddingTop="5"
+									  includeInLayout="false"
+									  />
+				<s:TextArea id="optionalInstallsTxtArea" text="{_viewResourceConstants.INFO_NEED_TO_READ_AND_AGREE_TO_LICENSE}"
+							fontSize="12" 
+							width="100%" 
+							height="100%" 
+							verticalScrollPolicy="off" 
+							editable="false"/>
+			</s:VGroup>
 		</s:HGroup>
 		<s:HGroup 
 			width="100%" 
@@ -2012,13 +2024,6 @@ variables are not required because the l
 						label="{_viewResourceConstants.INSTALL_AGREE_ALL}" 
 						selected="false" 
 						change="handleInstallPermissionChange(event)"/>
-			<controls2:LinkButton id="licenseLinkBtn"
-								  text="{_currentLicenseLabel}"
-								  fontWeight="bold"
-								  click="{handleLicenceBtnClick(event)}"
-								  includeInLayout="false"
-								  />
-						   
 		</s:HGroup>
 	</s:Panel>
 	<s:Panel id="thirdStepGroup"