blueprint-compiler/tests/samples/binding.blp
2022-01-24 20:35:31 +00:00

11 lines
171 B
Text

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