From b1b0ef0708eedc3b26a73069fd361f2d7d2d68dd Mon Sep 17 00:00:00 2001 From: austin Date: Thu, 1 Aug 2024 21:32:29 -0400 Subject: [PATCH] small ui fix --- .../java/electrosphere/menu/debug/ImGuiEntityMacros.java | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/main/java/electrosphere/menu/debug/ImGuiEntityMacros.java b/src/main/java/electrosphere/menu/debug/ImGuiEntityMacros.java index 0bb64adf..8c3ff877 100644 --- a/src/main/java/electrosphere/menu/debug/ImGuiEntityMacros.java +++ b/src/main/java/electrosphere/menu/debug/ImGuiEntityMacros.java @@ -203,6 +203,7 @@ public class ImGuiEntityMacros { } } } + ImGui.unindent(); } //print data macros @@ -222,6 +223,7 @@ public class ImGuiEntityMacros { } } } + ImGui.unindent(); } } @@ -232,6 +234,7 @@ public class ImGuiEntityMacros { if(showFirstPersonTab && ImGui.collapsingHeader("First Person Tree")){ ImGui.indent(); // FirstPersonTree firstPersonTree = FirstPersonTree.getTree(detailViewEntity); + ImGui.unindent(); } } @@ -331,6 +334,7 @@ public class ImGuiEntityMacros { } } + ImGui.unindent(); } } @@ -365,6 +369,7 @@ public class ImGuiEntityMacros { } } } + ImGui.unindent(); } }