GUI: add setting to change macro UI

This commit is contained in:
tildearrow 2022-01-23 16:46:32 -05:00
parent 32e56be9b7
commit 5e2a827e68
1 changed files with 9 additions and 0 deletions

View File

@ -2325,6 +2325,15 @@ void FurnaceGUI::drawSettings() {
settings.patRowsBase=1;
}
ImGui::Separator();
bool macroViewB=settings.macroView;
if (ImGui::Checkbox("Legacy macro view (standard macros only)",&macroViewB)) {
settings.macroView=macroViewB;
}
ImGui::Separator();
if (ImGui::TreeNode("Color scheme")) {
if (ImGui::TreeNode("General")) {
UI_COLOR_CONFIG(GUI_COLOR_BACKGROUND,"Background");