Internals: Renamed some ImGuiCorner enums.

This commit is contained in:
omar
2017-08-28 14:11:11 +08:00
parent 7a7327adde
commit 1f51e8f39d
3 changed files with 13 additions and 13 deletions

View File

@ -234,8 +234,8 @@ enum ImGuiCorner
{
ImGuiCorner_TopLeft = 1 << 0, // 1
ImGuiCorner_TopRight = 1 << 1, // 2
ImGuiCorner_BottomRight = 1 << 2, // 4
ImGuiCorner_BottomLeft = 1 << 3, // 8
ImGuiCorner_BotRight = 1 << 2, // 4
ImGuiCorner_BotLeft = 1 << 3, // 8
ImGuiCorner_All = 0x0F
};