blueprint-compiler/tests/samples/adw_breakpoint.blp
James Westman a12ac1b976 decompiler: Support Adw.Breakpoint syntax
Also, improve handling of translated strings.
2024-08-24 12:29:14 -05:00

14 lines
214 B
Text

using Gtk 4.0;
using Adw 1;
Label label {}
Adw.Breakpoint {
condition ("max-width: 600px")
setters {
label.label: C_("test", "Hello, world!");
label.visible: false;
label.extra-menu: null;
}
}