mirror of
https://github.com/tildearrow/furnace.git
synced 2024-11-24 05:25:12 +00:00
GUI: add setting to change macro UI
This commit is contained in:
parent
32e56be9b7
commit
5e2a827e68
1 changed files with 9 additions and 0 deletions
|
@ -2325,6 +2325,15 @@ void FurnaceGUI::drawSettings() {
|
||||||
settings.patRowsBase=1;
|
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("Color scheme")) {
|
||||||
if (ImGui::TreeNode("General")) {
|
if (ImGui::TreeNode("General")) {
|
||||||
UI_COLOR_CONFIG(GUI_COLOR_BACKGROUND,"Background");
|
UI_COLOR_CONFIG(GUI_COLOR_BACKGROUND,"Background");
|
||||||
|
|
Loading…
Reference in a new issue