fix pitch feedback loop; tune analyzer UI and dry/wet reflection

This commit is contained in:
Armin 2026-08-10 15:36:11 +02:00
commit 2359bfd579
5 changed files with 57 additions and 33 deletions

View file

@ -68,7 +68,10 @@ void Knob::resized()
const int valueH = juce::roundToInt (16.0f * s);
const int maxKnobSize = juce::roundToInt (84.0f * s);
bounds.removeFromTop (juce::roundToInt (15.0f * s));
auto nameArea = bounds.removeFromTop (nameH);
bounds.removeFromBottom (juce::roundToInt (10.0f * s));
auto valueArea = bounds.removeFromBottom (valueH);
nameLabel.setBounds (nameArea);
valueLabel.setBounds (valueArea);