This is an automated email from the ASF dual-hosted git repository. gregdove pushed a commit to branch develop in repository https://gitbox.apache.org/repos/asf/royale-asjs.git
commit aa08de07b03a14a14667ffedbdf780f92c5647c3 Author: greg-dove <[email protected]> AuthorDate: Wed Apr 1 15:56:01 2026 +1300 we have decided to skip 'quiet' support on Style components. --- .../src/main/royale/org/apache/royale/style/CheckBox.as | 17 ----------------- 1 file changed, 17 deletions(-) diff --git a/frameworks/projects/Style/src/main/royale/org/apache/royale/style/CheckBox.as b/frameworks/projects/Style/src/main/royale/org/apache/royale/style/CheckBox.as index 3af1b9cee0..707a89f8c1 100644 --- a/frameworks/projects/Style/src/main/royale/org/apache/royale/style/CheckBox.as +++ b/frameworks/projects/Style/src/main/royale/org/apache/royale/style/CheckBox.as @@ -306,23 +306,6 @@ package org.apache.royale.style } } } - private var _quiet:Boolean; - /** - * When true, the CheckBox will have a quieter appearance with less visual emphasis. This can be used when the CheckBox is part of a group of related options to reduce visual noise. - * The Checkbox skin should specify styles for the quiet state if it should look different than the regular state. This might include things like lighter colors, smaller size, or less prominent check icons. - * - * @languageversion 3.0 - * @productversion Royale 1.0.0 - */ - public function get quiet():Boolean - { - return _quiet; - } - - public function set quiet(value:Boolean):void - { - _quiet = value; - } /** * @copy org.apache.royale.style.StyleUIBase#getWrapperStyle()
