From f8380391a5936e80a07d463c81065e5b3a6fc153 Mon Sep 17 00:00:00 2001 From: Eric Mellino Date: Thu, 1 Mar 2018 13:43:46 -0800 Subject: [PATCH] Fix bracing style in ImGui.cs. --- src/ImGui.NET/ImGui.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/ImGui.NET/ImGui.cs b/src/ImGui.NET/ImGui.cs index 1262cb4..b6b2268 100644 --- a/src/ImGui.NET/ImGui.cs +++ b/src/ImGui.NET/ImGui.cs @@ -441,7 +441,8 @@ namespace ImGuiNET return ImGuiNative.igButton(message, size); } - public static unsafe void ProgressBar(float fraction, Vector2 size, string overlayText) { + public static unsafe void ProgressBar(float fraction, Vector2 size, string overlayText) + { ImGuiNative.igProgressBar(fraction, &size, overlayText); }