blueprint-compiler/tests/sample_errors/convert_bool_to_obj.blp
James Westman 866092ccf7
values: Don't allow assigning true/false to object
Fix a bug in the type checking code where it would not produce an error
if you assigned "true" or "false" to an object property.
2025-05-03 08:27:29 -05:00

5 lines
43 B
Text

using Gtk 4.0;
Button {
child: false;
}