From 17a83bfb4906a580f64992dee4e389ef0688976b Mon Sep 17 00:00:00 2001 From: Asriel Camora Date: Sat, 22 Jul 2023 17:25:04 -0700 Subject: [PATCH] Tiny settings fix --- Craftimizer/Windows/Settings.cs | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/Craftimizer/Windows/Settings.cs b/Craftimizer/Windows/Settings.cs index c1f7802..ad3eef0 100644 --- a/Craftimizer/Windows/Settings.cs +++ b/Craftimizer/Windows/Settings.cs @@ -93,7 +93,8 @@ public class Settings : Window { DrawTabGeneral(); DrawTabSimulator(); - DrawTabSynthHelper(); + if (Config.EnableSynthHelper) + DrawTabSynthHelper(); DrawTabAbout(); ImGui.EndTabBar(); @@ -105,6 +106,8 @@ public class Settings : Window if (!ImGui.BeginTabItem("General")) return; + ImGuiHelpers.ScaledDummy(5); + var isDirty = false; DrawOption( @@ -354,6 +357,8 @@ public class Settings : Window if (!ImGui.BeginTabItem("Simulator")) return; + ImGuiHelpers.ScaledDummy(5); + var isDirty = false; DrawOption( @@ -397,6 +402,8 @@ public class Settings : Window if (!ImGui.BeginTabItem("Synthesis Helper")) return; + ImGuiHelpers.ScaledDummy(5); + var isDirty = false; DrawOption( @@ -430,6 +437,8 @@ public class Settings : Window if (!ImGui.BeginTabItem("About")) return; + ImGuiHelpers.ScaledDummy(5); + var plugin = Service.Plugin; var icon = plugin.Icon;