blueprint-compiler/tests/samples/binding.blp
2022-07-23 15:10:28 -05:00

11 lines
189 B
Text

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