This is an automated email from the ASF dual-hosted git repository. greg-dove pushed a commit to branch develop in repository https://gitbox.apache.org/repos/asf/royale-asjs.git
commit 23a8da0cd15d839c79f98b21656425ca4fa41096 Author: greg-dove <[email protected]> AuthorDate: Wed Apr 22 14:15:19 2026 +1200 It seems wrong that the text in the Accordion headers should be selectable. --- .../main/royale/org/apache/royale/style/skins/AccordionSectionSkin.as | 2 ++ 1 file changed, 2 insertions(+) diff --git a/frameworks/projects/Style/src/main/royale/org/apache/royale/style/skins/AccordionSectionSkin.as b/frameworks/projects/Style/src/main/royale/org/apache/royale/style/skins/AccordionSectionSkin.as index 1271810d64..21ad9f139a 100644 --- a/frameworks/projects/Style/src/main/royale/org/apache/royale/style/skins/AccordionSectionSkin.as +++ b/frameworks/projects/Style/src/main/royale/org/apache/royale/style/skins/AccordionSectionSkin.as @@ -24,6 +24,7 @@ package org.apache.royale.style.skins import org.apache.royale.style.IStyleUIBase; import org.apache.royale.style.Icon; import org.apache.royale.style.stylebeads.interact.PointerEvents; + import org.apache.royale.style.stylebeads.interact.UserSelect; import org.apache.royale.style.stylebeads.sizing.HeightStyle; import org.apache.royale.style.stylebeads.sizing.WidthStyle; import org.apache.royale.style.colors.ThemeColorSet; @@ -115,6 +116,7 @@ package org.apache.royale.style.skins padding, new TextSize("sm"), new FontWeight("semibold"), + new UserSelect('none'), new DataState('disabled',[ new Cursor("default"), new TextColor(ThemeManager.instance.activeTheme.themeColorSet.getSwatch(ThemeColorSet.NEUTRAL,200)),
