SmartGuitarAmp

Guitar plugin made with JUCE that uses neural networks to emulate a tube amplifier
Log | Files | Refs | Submodules | README

commit 6d19e4b5246d5c0e149fc6df75e9bbfb3205dff9
parent 8d108611522b3383e45190f9fbc0b2ff50b634e3
Author: Matti Pesonen <[email protected]>
Date:   Wed, 22 Mar 2023 00:37:53 +0200

Fix power switch image glitch on window open

Diffstat:
Msrc/PluginEditor.cpp | 1+
1 file changed, 1 insertion(+), 0 deletions(-)

diff --git a/src/PluginEditor.cpp b/src/PluginEditor.cpp @@ -313,6 +313,7 @@ WrappedWaveNetVaAudioProcessorEditor::WrappedWaveNetVaAudioProcessorEditor(WaveN float scaledWidth = static_cast<float> (originalWidth) * waveNetVaComponent.getGuiScaleFactor(); float scaledHeight = static_cast<float> (originalHeight) * waveNetVaComponent.getGuiScaleFactor(); setSize(scaledWidth, scaledHeight); + resetImages(); } void WrappedWaveNetVaAudioProcessorEditor::resized()