tests: add test for inverted binding flag

This commit is contained in:
Gleb Smirnov 2022-01-21 20:08:21 +03:00 committed by James Westman
parent e4283ed0c1
commit f8c96abfc5
2 changed files with 8 additions and 3 deletions

View file

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