1
0
Fork 0
mirror of https://github.com/ocornut/imgui.git synced 2026-01-09 23:54:20 +00:00

Data types: moved ImGuiDataType_String to public API as a convenience enum value only. (#8266)

This commit is contained in:
ocornut 2025-01-06 14:22:03 +01:00
parent f169102c8e
commit 80aafbc81b
3 changed files with 4 additions and 3 deletions

View file

@ -827,8 +827,7 @@ struct ImGuiDataTypeInfo
// Extend ImGuiDataType_
enum ImGuiDataTypePrivate_
{
ImGuiDataType_String = ImGuiDataType_COUNT + 1,
ImGuiDataType_Pointer,
ImGuiDataType_Pointer = ImGuiDataType_COUNT + 1,
ImGuiDataType_ID,
};