blueprint-compiler/tests/samples/scale_marks.blp
Matthijs Velsink e16e723a81 scale: Decompile non-translatable labels too
While working on the previous commit, I noticed Gtk.Scale specially
handles translator comments, but more importantly, that it does not put
non-translatable labels in its decompiled output.

This is wrong, as it's not unlikely that Gtk.Scale marks would use a
purely numeric string, which should not be lost upon decompilation.

Add a test for this case too.
2025-06-13 00:10:54 +02:00

10 lines
143 B
Text

using Gtk 4.0;
Scale {
marks [
mark (-1, bottom),
mark (0, top, _("Hello, world!")),
mark (1, bottom, "1"),
mark (2),
]
}