Tiny settings fix

This commit is contained in:
Asriel Camora
2023-07-22 17:25:04 -07:00
parent 20e3dcf758
commit 17a83bfb49
+9
View File
@@ -93,6 +93,7 @@ public class Settings : Window
{
DrawTabGeneral();
DrawTabSimulator();
if (Config.EnableSynthHelper)
DrawTabSynthHelper();
DrawTabAbout();
@@ -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;