blueprint-compiler/tests/samples/property_binding_dec.blp
2024-06-29 13:32:34 +00:00

11 lines
174 B
Text

using Gtk 4.0;
Box {
visible: bind box2.visible inverted;
orientation: bind box2.orientation;
spacing: bind box2.spacing no-sync-create;
}
Box box2 {
spacing: 6;
}