Remove PropertyBinding rule, just use Binding

This commit is contained in:
James Westman 2023-05-22 21:26:07 -05:00
parent abc4e5de65
commit 0a4b5d07a1
16 changed files with 100 additions and 179 deletions

View file

@ -1,9 +1,9 @@
using Gtk 4.0;
Box {
visible: bind-property box2.visible inverted;
visible: bind box2.visible inverted;
orientation: bind box2.orientation;
spacing: bind-property box2.spacing no-sync-create;
spacing: bind box2.spacing no-sync-create;
}
Box box2 {

View file

@ -1,5 +1,5 @@
using Gtk 4.0;
template $MyTemplate {
object: bind-property template.object2;
object: bind template.object2;
}