mirror of
https://gitlab.gnome.org/jwestman/blueprint-compiler.git
synced 2025-05-04 15:59:08 -04:00
- Added tests for more error messages - Test the "go to reference" feature at every character index of every test case - Delete unused code and imports - Fix some bugs I found along the way
12 lines
228 B
Text
12 lines
228 B
Text
using Gtk 4.0;
|
|
|
|
Box {
|
|
visible: bind box2.visible inverted;
|
|
orientation: bind box2.orientation;
|
|
spacing: bind box2.spacing no-sync-create;
|
|
tooltip-text: bind box2.tooltip-text bidirectional;
|
|
}
|
|
|
|
Box box2 {
|
|
spacing: 6;
|
|
}
|