Two small things in architecture/faust/gui/JuceGUI.h:
-
In addRadioButtons (around 1878) there’s a TODO: "check currently unused checkButtonWidth...". The code computes checkButtonWidth from the max label width but then never uses it - the layout uses fixed kCheckButtonWidth / kRadioButtonHeight. So either the computed width should be used for layout, or the variable and loop can be simplified.
-
Line 1899: comment says "Add a ciruclar slider" - typo, should be "circular".
Two small things in
architecture/faust/gui/JuceGUI.h:In
addRadioButtons(around 1878) there’s a TODO: "check currently unused checkButtonWidth...". The code computescheckButtonWidthfrom the max label width but then never uses it - the layout uses fixedkCheckButtonWidth/kRadioButtonHeight. So either the computed width should be used for layout, or the variable and loop can be simplified.Line 1899: comment says "Add a ciruclar slider" - typo, should be "circular".