Tighten layout: reduce gaps, shrink header, reposition logo, rename newlogo→logo

This commit is contained in:
Armin 2026-07-17 00:48:49 +02:00
commit 4acca46260
6 changed files with 64 additions and 45 deletions

View file

@ -7,9 +7,12 @@
class KnobLookAndFeel : public juce::LookAndFeel_V4 {
public:
KnobLookAndFeel();
void drawRotarySlider(juce::Graphics& g, int x, int y, int width, int height,
float sliderPos, float rotaryStartAngle,
float rotaryEndAngle, juce::Slider& slider) override;
private:
juce::Image knobOverlay;
};
class ComboBoxLookAndFeel : public juce::LookAndFeel_V4 {
@ -249,7 +252,7 @@ private:
MainContentComponent content;
float currentScale = 1.0f;
static constexpr int baseWidth = 1660;
static constexpr int baseHeight = 1100;
static constexpr int baseHeight = 1028;
JUCE_DECLARE_NON_COPYABLE_WITH_LEAK_DETECTOR(ChromaFlockEditor)
};