grame-cncm / faustide

Faust IDE (Integrated Development Environment)
https://faustide.grame.fr
Other
76 stars 23 forks source link

UI elements are out of order for [%i] when i>9 #100

Closed DBraun closed 5 months ago

DBraun commented 5 months ago
process = par(i, 11, checkbox("h:boxes/[%i] Box %i"));

image

Box 10 should appear last, but it appears between Box 0 and Box 1.

DBraun commented 5 months ago

Woops. This works:

process = par(i, 11, checkbox("h:boxes/[%2i] Box %i"));

But maybe that could just be automatic?