This is an automated email from the ASF dual-hosted git repository. joshtynjala pushed a commit to branch develop in repository https://gitbox.apache.org/repos/asf/flex-utilities.git
commit f0e406256d0d3043f3c32d2bb260f88e8c2e64b9 Author: Josh Tynjala <[email protected]> AuthorDate: Thu Sep 4 13:55:32 2025 -0700 installer: fix drop down list behavior and appearance Now shows a maximum 10 items because they were too long and went off screen. Now scrolls when there are more than 10 items. Items in the lists are now justified, instead of all being different sizes depending on the text, which is a better user experience and looks more polished. --- flex-installer/installer/src/InstallApacheFlex.mxml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/flex-installer/installer/src/InstallApacheFlex.mxml b/flex-installer/installer/src/InstallApacheFlex.mxml index b57eed91..d9063e55 100644 --- a/flex-installer/installer/src/InstallApacheFlex.mxml +++ b/flex-installer/installer/src/InstallApacheFlex.mxml @@ -3871,7 +3871,7 @@ variables are not required because the locations of these pieces are known. fontFamily="openSansSemibold" change="_langSelect_changeHandler(event)"> <s:layout> - <s:VerticalLayout requestedRowCount="-1"/> + <s:VerticalLayout requestedMaxRowCount="10" horizontalAlign="contentJustify"/> </s:layout> </s:DropDownList> </s:HGroup> @@ -3915,7 +3915,7 @@ variables are not required because the locations of these pieces are known. fontFamily="openSansSemibold" change="handleFlexVersionChange(event)"> <s:layout> - <s:VerticalLayout requestedRowCount="-1"/> + <s:VerticalLayout requestedMaxRowCount="10" horizontalAlign="contentJustify"/> </s:layout> </s:DropDownList> </s:HGroup> @@ -3927,7 +3927,7 @@ variables are not required because the locations of these pieces are known. fontFamily="openSansSemibold" change="handleAirVersionChange(event)"> <s:layout> - <s:VerticalLayout requestedRowCount="-1"/> + <s:VerticalLayout requestedMaxRowCount="10" horizontalAlign="contentJustify"/> </s:layout> </s:DropDownList> </s:HGroup> @@ -3939,7 +3939,7 @@ variables are not required because the locations of these pieces are known. fontFamily="openSansSemibold" change="handleFlashPlayerVersionChange(event)"> <s:layout> - <s:VerticalLayout requestedRowCount="-1"/> + <s:VerticalLayout requestedMaxRowCount="10" horizontalAlign="contentJustify"/> </s:layout> </s:DropDownList> </s:HGroup>
