Skip to content

Commit

Permalink
Removed extraneous comma for pedantic compilers (#516)
Browse files Browse the repository at this point in the history
  • Loading branch information
ocornut committed Mar 2, 2016
1 parent 76ce08c commit 2065cbe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion imgui_internal.h
Original file line number Diff line number Diff line change
Expand Up @@ -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_
Expand Down

0 comments on commit 2065cbe

Please sign in to comment.