blueprint-compiler/tests/samples/property_binding.blp
2023-07-20 18:46:45 -05: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;
}