From 5e2a827e683199a973c066d6027358ca3c47803f Mon Sep 17 00:00:00 2001 From: tildearrow Date: Sun, 23 Jan 2022 16:46:32 -0500 Subject: [PATCH] GUI: add setting to change macro UI --- src/gui/gui.cpp | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/src/gui/gui.cpp b/src/gui/gui.cpp index 7620217b2..c17fe0dbb 100644 --- a/src/gui/gui.cpp +++ b/src/gui/gui.cpp @@ -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)",¯oViewB)) { + settings.macroView=macroViewB; + } + + ImGui::Separator(); + if (ImGui::TreeNode("Color scheme")) { if (ImGui::TreeNode("General")) { UI_COLOR_CONFIG(GUI_COLOR_BACKGROUND,"Background");