You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fixed InputFloatX, SliderFloatX, DragFloatX functions erroneously reporting IsItemEdited() multiple times when the text input doesn't match the formatted output value (e.g. input "1" shows "1.000"). It wasn't much of a problem because we typically use the return value instead of IsItemEdited() here. (#1875, #2034)
ImGuiInputTextFlags_CallbackResize = 1 << 18, // Callback on buffer capacity changes request (beyond 'buf_size' parameter value), allowing the string to grow. Notify when the string wants to be resized (for string types which hold a cache of their Size). You will be provided a new BufSize in the callback and NEED to honor it. (see misc/cpp/imgui_stdlib.h for an example of using this)
765
765
// [Internal]
766
-
ImGuiInputTextFlags_Multiline = 1 << 20// For internal use by InputTextMultiline()
766
+
ImGuiInputTextFlags_Multiline = 1 << 20, // For internal use by InputTextMultiline()
767
+
ImGuiInputTextFlags_NoMarkEdited = 1 << 21// For internal use by functions using InputText() before reformatting data
767
768
};
768
769
769
770
// Flags for ImGui::TreeNodeEx(), ImGui::CollapsingHeader*()
0 commit comments