Selectable: Added ImGuiSelectableFlags_Disabled flag in the public API. (#211)

This commit is contained in:
omar
2018-08-14 16:07:01 -07:00
parent caaa746424
commit 4e33aeed82
3 changed files with 4 additions and 3 deletions

View File

@ -251,8 +251,7 @@ enum ImGuiSelectableFlagsPrivate_
ImGuiSelectableFlags_NoHoldingActiveID = 1 << 10,
ImGuiSelectableFlags_PressedOnClick = 1 << 11,
ImGuiSelectableFlags_PressedOnRelease = 1 << 12,
ImGuiSelectableFlags_Disabled = 1 << 13,
ImGuiSelectableFlags_DrawFillAvailWidth = 1 << 14
ImGuiSelectableFlags_DrawFillAvailWidth = 1 << 13
};
enum ImGuiSeparatorFlags_