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 5bc236c5be38cca0fa4f46a4fa218506cdc12cc9 Author: Josh Tynjala <[email protected]> AuthorDate: Mon May 5 12:33:57 2025 -0700 FontAwesomeIcon: change faStyle property defaultsto SOLID instead of REGULAR With the free version of Font Awesome, there are significantly more solid icons than regular icons. That should be our default, since we're including the free version of Font Awesome and not the paid pro version. For reference: Font Awesome 5 has 1001 solid icons vs 151 regular icons Font Awesome 6 has 1402 solid icons vs 163 regular icons --- .../Icons/src/main/royale/org/apache/royale/icons/FontAwesomeIcon.as | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frameworks/projects/Icons/src/main/royale/org/apache/royale/icons/FontAwesomeIcon.as b/frameworks/projects/Icons/src/main/royale/org/apache/royale/icons/FontAwesomeIcon.as index 006425892a..7484e3164e 100644 --- a/frameworks/projects/Icons/src/main/royale/org/apache/royale/icons/FontAwesomeIcon.as +++ b/frameworks/projects/Icons/src/main/royale/org/apache/royale/icons/FontAwesomeIcon.as @@ -91,7 +91,7 @@ package org.apache.royale.icons addClass('fa'); } - protected var _faStyle:String = REGULAR; + protected var _faStyle:String = SOLID; protected var _oldFaStyle:String; /** * the font awesome 5 style.
