From d4f4833401922591f3387de979da1223095ae0ed Mon Sep 17 00:00:00 2001 From: David Pethes Date: Sat, 3 Jun 2017 13:26:31 +0200 Subject: [PATCH] actually use the flags parameter in TreeNodeEx --- src/ImGui.NET/ImGui.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ImGui.NET/ImGui.cs b/src/ImGui.NET/ImGui.cs index 6840d90..5e2a116 100644 --- a/src/ImGui.NET/ImGui.cs +++ b/src/ImGui.NET/ImGui.cs @@ -1069,7 +1069,7 @@ namespace ImGuiNET public static bool TreeNodeEx(string label, TreeNodeFlags flags = 0) { - return ImGuiNative.igTreeNodeEx(label); + return ImGuiNative.igTreeNodeEx(label, flags); } public static void TreePop()