From 319a557ec30732bba5d51ce89a7aecb0f7c4f856 Mon Sep 17 00:00:00 2001 From: tildearrow Date: Tue, 21 Oct 2025 18:40:00 -0500 Subject: [PATCH] mixer volume meters on by default --- src/gui/gui.h | 2 +- src/gui/settings.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/gui/gui.h b/src/gui/gui.h index 2c752cb1f..c4d6784fe 100644 --- a/src/gui/gui.h +++ b/src/gui/gui.h @@ -2315,7 +2315,7 @@ class FurnaceGUI { songNotesWrap(0), rackShowLEDs(1), sampleImportInstDetune(0), - mixerStyle(0), + mixerStyle(1), mainFontPath(""), headFontPath(""), patFontPath(""), diff --git a/src/gui/settings.cpp b/src/gui/settings.cpp index 963963efe..52d849439 100644 --- a/src/gui/settings.cpp +++ b/src/gui/settings.cpp @@ -5053,7 +5053,7 @@ void FurnaceGUI::readConfig(DivConfig& conf, FurnaceGUISettingGroups groups) { settings.rackShowLEDs=conf.getInt("rackShowLEDs",1); - settings.mixerStyle=conf.getInt("mixerStyle",0); + settings.mixerStyle=conf.getInt("mixerStyle",1); settings.channelColors=conf.getInt("channelColors",1); settings.channelTextColors=conf.getInt("channelTextColors",0);