Skip to content

Commit 8b77906

Browse files
committed
fixed startup splash screen bug, gain stage presets, 10 new preests
Former-commit-id: e28ec2f
1 parent 64215e4 commit 8b77906

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

58 files changed

+2117
-477
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
67d1ca7d1ed09b3db03e469a761367a7ad71e936
1+
87a25b94500a5e1132e3915a0c44a913e166a15d

Presets/Autosave_1.hip

-90 Bytes
Binary file not shown.

Presets/Autosave_2.hip

-8 Bytes
Binary file not shown.

Presets/Autosave_3.hip

-98 Bytes
Binary file not shown.

Presets/Autosave_4.hip

65.1 KB
Binary file not shown.

Presets/Autosave_5.hip

65.1 KB
Binary file not shown.

Presets/REACH.hip

-27 Bytes
Binary file not shown.

Presets/Reach.hip

-27 Bytes
Binary file not shown.

Scripts/Handler.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -98,6 +98,7 @@ inline function onComboBox1Control(component, value)
9898
if (value == 2.0) {
9999
Theme.setTheme('Dark');
100100
}
101+
UserSettings.saveSettings();
101102
};
102103

103104
// Animations
@@ -205,13 +206,12 @@ Content.getComponent("button_quickTheme").setControlCallback(onbutton_quickTheme
205206
inline function onbutton_quickThemeControl(component, value)
206207
{
207208
if (value) {
208-
209209
if (Theme.name == 'Light') {
210210
Theme.setTheme('Dark');
211211
} else {
212212
Theme.setTheme('Light');
213213
}
214-
214+
UserSettings.saveSettings();
215215
}
216216

217217
};

Scripts/ScriptProcessors/Reach/Interface.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ include("Helpers.js");
44
include("Reverb.js");
55
include("Effects.js");
66
include("Filter.js");
7+
include("Config.js");
78
include("Settings.js");
89
include("EffectCustomizer.js");
910
include("ZoomHandler.js");
@@ -44,6 +45,7 @@ Globals.screenLock = true;
4445
// Loading Settings
4546
if (settingsExist()) {
4647
UserSettings.loadSettings();
48+
Console.print(UserSettings.startupAnimation);
4749
if (UserSettings.startupAnimation) {
4850
SplashAnimation.init();
4951
} else {

0 commit comments

Comments
 (0)