blueprint-compiler/tests/samples/binding.blp
2022-02-09 15:39:02 -06: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;
}