AnalogTapeModel

Physical modelling signal processing for analog tape recording
Log | Files | Refs | Submodules | README | LICENSE

commit c57c0bb52429a9190f7126d5953e6e71e852c5a1
parent cc1bc38b0716dbd8ea928dbbe513bba3320c0fcf
Author: Jatin Chowdhury <[email protected]>
Date:   Tue, 10 Jan 2023 01:56:28 -0800

More repainting tweaks

Diffstat:
MPlugin/Source/GUI/Assets/gui.xml | 6+++---
MPlugin/Source/GUI/SettingsButton.cpp | 2+-
2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/Plugin/Source/GUI/Assets/gui.xml b/Plugin/Source/GUI/Assets/gui.xml @@ -33,7 +33,7 @@ <View id="root" resizable="1" resize-corner="1" flex-direction="column" padding="0" width="720" height="620" background-color="FF8B3232" background-image="Background_svg" image-placement="stretch"> - <View max-height="100" padding="0" margin="0" background-color=""> + <View max-height="100" padding="0" margin="0" background-color="" repaint-hz="27"> <View margin="2" padding="" background-color="00000000" flex-direction="column" flex-grow="0.75"> <View flex-grow="0.15" background-color="00000000"/> @@ -224,7 +224,7 @@ </View> </View> <View display="tabbed" padding="0" background-color="FF31323A" lookAndFeel="MyLNF" group="Wow/Flutter Controls"> - <View tab-caption="Flutter" flex-direction="column" background-color="FF31323A" group="Flutter Controls Tab"> + <View tab-caption="Flutter" flex-direction="column" background-color="FF31323A" group="Flutter Controls Tab" repaint-hz="27"> <FlutterMenu margin="0" padding="0" background-color="00000000" min-height="15" max-height="55" flex-grow="0.25" name="Flutter Sync" tooltip="Snaps the flutter rate to a synchronized value."/> <View margin="0" padding="0" max-height="15" flex-grow="0.1" background-color="00000000"/> @@ -241,7 +241,7 @@ parameter="flutter_onoff" name="Wow/Flutter On/Off" tooltip="Turns the wow and flutter processing on or off."/> </View> <View tab-caption="Wow" flex-direction="column" background-color="FF31323A" - padding="0" margin="3" group="Wow Controls Tab"> + padding="0" margin="3" group="Wow Controls Tab" repaint-hz="27"> <WowMenu margin="0" padding="0" background-color="00000000" min-height="15" max-height="55" flex-grow="0.35" name="Wow Sync" tooltip="Snaps the wow rate to a synchronized value."/> <View margin="0" padding="0" flex-grow="0.1" background-color="00000000"/> diff --git a/Plugin/Source/GUI/SettingsButton.cpp b/Plugin/Source/GUI/SettingsButton.cpp @@ -10,7 +10,7 @@ SettingsButton::SettingsButton (const ChowtapeModelAudioProcessor& processor, ch proc (processor), openGLHelper (oglHelper) { - pluginSettings->addProperties<&SettingsButton::globalSettingChanged> ({ { openglID, false } }, *this); + pluginSettings->addProperties<&SettingsButton::globalSettingChanged> ({ { openglID, true } }, *this); globalSettingChanged (openglID); auto cog = Drawable::createFromImageData (BinaryData::cogsolid_svg, BinaryData::cogsolid_svgSize);