mirror of
https://github.com/Drezil/imgui.git
synced 2024-11-15 01:17:00 +00:00
Removed extraneous comma for pedantic compilers (#516)
This commit is contained in:
parent
76ce08c338
commit
2065cbec4d
@ -160,7 +160,7 @@ enum ImGuiButtonFlags_
|
|||||||
ImGuiButtonFlags_DontClosePopups = 1 << 5, // disable automatically closing parent popup on press
|
ImGuiButtonFlags_DontClosePopups = 1 << 5, // disable automatically closing parent popup on press
|
||||||
ImGuiButtonFlags_Disabled = 1 << 6, // disable interaction
|
ImGuiButtonFlags_Disabled = 1 << 6, // disable interaction
|
||||||
ImGuiButtonFlags_AlignTextBaseLine = 1 << 7, // vertically align button to match text baseline - ButtonEx() only
|
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_
|
enum ImGuiTreeNodeFlags_
|
||||||
|
Loading…
Reference in New Issue
Block a user