summaryrefslogtreecommitdiff
path: root/Base
diff options
context:
space:
mode:
authorSam Atkins <atkinssj@serenityos.org>2022-05-09 19:20:35 +0100
committerAndreas Kling <kling@serenityos.org>2022-05-21 22:25:33 +0200
commitaadb35ff4675719948f071d8061cabc3b716e713 (patch)
treeade9cf92f84a3dcc5b237aed8c37a4f19239083c /Base
parent0ef3c15822aaf0e8319100860ad5ea4b52ae0122 (diff)
downloadserenity-aadb35ff4675719948f071d8061cabc3b716e713.zip
LibGUI: Add ability to position checkboxes to the right of their text
This uses the new `checkbox_position` property, which can be "Left" or "Right".
Diffstat (limited to 'Base')
-rw-r--r--Base/usr/share/man/man5/GML-Widget-CheckBox.md7
1 files changed, 4 insertions, 3 deletions
diff --git a/Base/usr/share/man/man5/GML-Widget-CheckBox.md b/Base/usr/share/man/man5/GML-Widget-CheckBox.md
index b8937cacc8..cc62c7c1be 100644
--- a/Base/usr/share/man/man5/GML-Widget-CheckBox.md
+++ b/Base/usr/share/man/man5/GML-Widget-CheckBox.md
@@ -27,9 +27,10 @@ Defines a GUI checkbox widget.
## Registered Properties
-| Property | Type | Possible values | Description |
-|----------|------|-----------------|--------------------------|
-| autosize | bool | true or false | Determines if auto-sized |
+| Property | Type | Possible values | Description |
+|-------------------|--------|-------------------|--------------------------------------------------------------------|
+| autosize | bool | true or false | Determines if auto-sized |
+| checkbox_position | String | "Left" or "Right" | Place the checkbox itself on either the left or right of its label |
## See also
- [GML Button](help://man/5/GML-Widget-Button)