mirror of
https://gitlab.gnome.org/jwestman/blueprint-compiler.git
synced 2025-05-04 15:59:08 -04:00
decompiler: Support list accessibility properties
This commit is contained in:
parent
3dfce3bbe0
commit
4d3dc92448
5 changed files with 54 additions and 25 deletions
|
@ -3,7 +3,11 @@ using Gtk 4.0;
|
|||
Box {
|
||||
accessibility {
|
||||
label: _("Hello, world!");
|
||||
labelled-by: my_label;
|
||||
|
||||
labelled-by: [
|
||||
my_label,
|
||||
];
|
||||
|
||||
checked: true;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -3,7 +3,13 @@ using Gtk 4.0;
|
|||
Box {
|
||||
accessibility {
|
||||
label: _("Hello, world!");
|
||||
labelled-by: [my_label1, my_label2, my_label3];
|
||||
|
||||
labelled-by: [
|
||||
my_label1,
|
||||
my_label2,
|
||||
my_label3,
|
||||
];
|
||||
|
||||
checked: true;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue