blueprint-compiler/tests/samples/accessibility_dec.blp
James Westman a4ffdd944f language: a11y: Fix property names
Blueprint uses underscores in property/state/relation names, but
GtkBuilder expects dashes because it uses the glib names from the
GtkAccessible* enums.
2022-03-28 14:38:05 -05:00

12 lines
143 B
Text

using Gtk 4.0;
Box {
accessibility {
label: _("Hello, world!");
labelled-by: my_label;
checked: true;
}
}
Label my_label {
}