Skip to content

Commit 2065cbe

Browse files
committed
Removed extraneous comma for pedantic compilers (ocornut#516)
1 parent 76ce08c commit 2065cbe

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

imgui_internal.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ enum ImGuiButtonFlags_
160160
ImGuiButtonFlags_DontClosePopups = 1 << 5, // disable automatically closing parent popup on press
161161
ImGuiButtonFlags_Disabled = 1 << 6, // disable interaction
162162
ImGuiButtonFlags_AlignTextBaseLine = 1 << 7, // vertically align button to match text baseline - ButtonEx() only
163-
ImGuiButtonFlags_NoKeyModifiers = 1 << 8, // disable interaction if a key modifier is held
163+
ImGuiButtonFlags_NoKeyModifiers = 1 << 8 // disable interaction if a key modifier is held
164164
};
165165

166166
enum ImGuiTreeNodeFlags_

0 commit comments

Comments
 (0)