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/royale-asjs.git
commit 7138dcc00fe62c1a402438768d845f848f3cb719 Author: Josh Tynjala <[email protected]> AuthorDate: Thu Apr 17 10:35:33 2025 -0700 ASDoc: inheritance list scrolls horizontally if it gets too large This is to avoid it getting to wide and causing scrolling on an outer container. It may not be the ideal solution, but it's better than it was. The best solution might be to have it start multiple rows when the total width would be too wide. --- examples/royale/ASDoc/src/main/royale/ASDocMainView.mxml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/royale/ASDoc/src/main/royale/ASDocMainView.mxml b/examples/royale/ASDoc/src/main/royale/ASDocMainView.mxml index 7a6ba16fd8..ae6567f3e8 100644 --- a/examples/royale/ASDoc/src/main/royale/ASDocMainView.mxml +++ b/examples/royale/ASDoc/src/main/royale/ASDocMainView.mxml @@ -488,7 +488,7 @@ limitations under the License. </js:Group> <js:Group> <js:beads> - <js:HorizontalLayout /> + <js:OneFlexibleChildHorizontalLayoutForOverflow flexibleChild="inheritance" /> </js:beads> <js:Label className="detailCaption" text="Inheritance" /> <js:List className="inheritanceList" id="inheritance" dataProvider="{ASDocModel(applicationModel).inheritance}"
