From 2065cbec4dc949a8a3f55fba0fc25d7ed342036d Mon Sep 17 00:00:00 2001 From: ocornut Date: Thu, 3 Mar 2016 00:34:06 +0100 Subject: [PATCH] Removed extraneous comma for pedantic compilers (#516) --- imgui_internal.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/imgui_internal.h b/imgui_internal.h index eaeb312ebc7d..f6300e74b160 100644 --- a/imgui_internal.h +++ b/imgui_internal.h @@ -160,7 +160,7 @@ enum ImGuiButtonFlags_ ImGuiButtonFlags_DontClosePopups = 1 << 5, // disable automatically closing parent popup on press ImGuiButtonFlags_Disabled = 1 << 6, // disable interaction ImGuiButtonFlags_AlignTextBaseLine = 1 << 7, // vertically align button to match text baseline - ButtonEx() only - ImGuiButtonFlags_NoKeyModifiers = 1 << 8, // disable interaction if a key modifier is held + ImGuiButtonFlags_NoKeyModifiers = 1 << 8 // disable interaction if a key modifier is held }; enum ImGuiTreeNodeFlags_