mirror of
https://gitlab.gnome.org/jwestman/blueprint-compiler.git
synced 2025-05-04 15:59:08 -04:00
Change the parsing for values to make them more reusable, in particular for when I implement extensions.
11 lines
192 B
Text
11 lines
192 B
Text
using Gtk 4.0;
|
|
|
|
Box {
|
|
visible: bind-property box2.visible inverted;
|
|
orientation: bind box2.orientation;
|
|
spacing: bind-property box2.spacing no-sync-create;
|
|
}
|
|
|
|
Box box2 {
|
|
spacing: 6;
|
|
}
|