Skip to content

Commit d3a387c

Browse files
committed
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)
1 parent 99a8450 commit d3a387c

File tree

4 files changed

+16
-5
lines changed

4 files changed

+16
-5
lines changed

docs/CHANGELOG.txt

+3
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,9 @@ Other Changes:
4141
- Columns: Fixed Selectable with SpanAllColumns flag from creating an extraneous draw command. (#125)
4242
- Separator: Revert 1.70 "Declare its thickness (1.0f) to the layout" change. It's not incorrect
4343
but it breaks existing some layout patterns. Will return back to it when we expose Separator flags.
44+
- Fixed InputFloatX, SliderFloatX, DragFloatX functions erroneously reporting IsItemEdited() multiple
45+
times when the text input doesn't match the formatted output value (e.g. input "1" shows "1.000").
46+
It wasn't much of a problem because we typically use the return value instead of IsItemEdited() here.
4447
- Scrollbar: Very minor bounding box adjustment to cope with various border size.
4548
- ImFontAtlas: FreeType: Added RasterizerFlags::Monochrome flag to disable font anti-aliasing. (#2545)
4649
Combine with RasterizerFlags::MonoHinting for best results.

docs/TODO.txt

-1
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,6 @@ It's mostly a bunch of personal notes, probably incomplete. Feel free to query i
6767
- widgets: selectable: generic BeginSelectable()/EndSelectable() mechanism.
6868
- widgets: selectable: a way to visualize partial/mixed selection (e.g. parent tree node has children with mixed selection)
6969
- widgets: checkbox with custom glyph inside frame.
70-
- widgets: IsItemEdited() on InputScalar keeps returning true because InputText vs formatted output are mismatched.
7170

7271
- input text: clean up the mess caused by converting UTF-8 <> wchar. the code is rather inefficient right now and super fragile.
7372
- input text: reorganize event handling, allow CharFilter to modify buffers, allow multiple events? (#541)

imgui.h

+2-1
Original file line numberDiff line numberDiff line change
@@ -763,7 +763,8 @@ enum ImGuiInputTextFlags_
763763
ImGuiInputTextFlags_CharsScientific = 1 << 17, // Allow 0123456789.+-*/eE (Scientific notation input)
764764
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)
765765
// [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
767768
};
768769

769770
// Flags for ImGui::TreeNodeEx(), ImGui::CollapsingHeader*()

imgui_widgets.cpp

+11-3
Original file line numberDiff line numberDiff line change
@@ -2760,7 +2760,8 @@ bool ImGui::TempInputTextScalar(const ImRect& bb, ImGuiID id, const char* label,
27602760
ImStrTrimBlanks(data_buf);
27612761

27622762
g.CurrentWindow->DC.CursorPos = bb.Min;
2763-
ImGuiInputTextFlags flags = ImGuiInputTextFlags_AutoSelectAll | ((data_type == ImGuiDataType_Float || data_type == ImGuiDataType_Double) ? ImGuiInputTextFlags_CharsScientific : ImGuiInputTextFlags_CharsDecimal);
2763+
ImGuiInputTextFlags flags = ImGuiInputTextFlags_AutoSelectAll | ImGuiInputTextFlags_NoMarkEdited;
2764+
flags |= ((data_type == ImGuiDataType_Float || data_type == ImGuiDataType_Double) ? ImGuiInputTextFlags_CharsScientific : ImGuiInputTextFlags_CharsDecimal);
27642765
bool value_changed = InputTextEx(label, NULL, data_buf, IM_ARRAYSIZE(data_buf), bb.GetSize(), flags);
27652766
if (init)
27662767
{
@@ -2769,7 +2770,11 @@ bool ImGui::TempInputTextScalar(const ImRect& bb, ImGuiID id, const char* label,
27692770
g.TempInputTextId = g.ActiveId;
27702771
}
27712772
if (value_changed)
2772-
return DataTypeApplyOpFromText(data_buf, g.InputTextState.InitialTextA.Data, data_type, data_ptr, NULL);
2773+
{
2774+
value_changed = DataTypeApplyOpFromText(data_buf, g.InputTextState.InitialTextA.Data, data_type, data_ptr, NULL);
2775+
if (value_changed)
2776+
MarkItemEdited(id);
2777+
}
27732778
return false;
27742779
}
27752780

@@ -2792,6 +2797,7 @@ bool ImGui::InputScalar(const char* label, ImGuiDataType data_type, void* data_p
27922797
if ((flags & (ImGuiInputTextFlags_CharsHexadecimal | ImGuiInputTextFlags_CharsScientific)) == 0)
27932798
flags |= ImGuiInputTextFlags_CharsDecimal;
27942799
flags |= ImGuiInputTextFlags_AutoSelectAll;
2800+
flags |= ImGuiInputTextFlags_NoMarkEdited; // We call MarkItemEdited() ourselve by comparing the actual data rather than the string.
27952801

27962802
if (step != NULL)
27972803
{
@@ -2833,6 +2839,8 @@ bool ImGui::InputScalar(const char* label, ImGuiDataType data_type, void* data_p
28332839
if (InputText(label, buf, IM_ARRAYSIZE(buf), flags))
28342840
value_changed = DataTypeApplyOpFromText(buf, g.InputTextState.InitialTextA.Data, data_type, data_ptr, format);
28352841
}
2842+
if (value_changed)
2843+
MarkItemEdited(window->DC.LastItemId);
28362844

28372845
return value_changed;
28382846
}
@@ -4012,7 +4020,7 @@ bool ImGui::InputTextEx(const char* label, const char* hint, char* buf, int buf_
40124020
if (label_size.x > 0)
40134021
RenderText(ImVec2(frame_bb.Max.x + style.ItemInnerSpacing.x, frame_bb.Min.y + style.FramePadding.y), label);
40144022

4015-
if (value_changed)
4023+
if (value_changed && !(flags & ImGuiInputTextFlags_NoMarkEdited))
40164024
MarkItemEdited(id);
40174025

40184026
IMGUI_TEST_ENGINE_ITEM_INFO(id, label, window->DC.ItemFlags);

0 commit comments

Comments
 (0)