Skip to content

Commit f3ab5e6

Browse files
committed
Fixed InputText() bug with ImGuiInputTextFlags_EnterReturnsTrue (in nav branch only) (ocornut#787). Thanks @Grouflon
1 parent bea0611 commit f3ab5e6

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

imgui.cpp

+5-1
Original file line numberDiff line numberDiff line change
@@ -8932,7 +8932,11 @@ bool ImGui::InputTextEx(const char* label, char* buf, int buf_size, const ImVec2
89328932
value_changed = true;
89338933
}
89348934
}
8935-
if (!cancel_edit && !clear_active_id)
8935+
8936+
// When using 'ImGuiInputTextFlags_EnterReturnsTrue' as a special case we reapply the live buffer back to the input buffer before clearing ActiveId, even though strictly speaking it wasn't modified on this frame.
8937+
// If we didn't do that, code like InputInt() with ImGuiInputTextFlags_EnterReturnsTrue would fail. Also this allows the user to use InputText() with ImGuiInputTextFlags_EnterReturnsTrue without maintaining any user-side storage.
8938+
bool apply_edit_back_to_user_buffer = !cancel_edit || (enter_pressed && (flags & ImGuiInputTextFlags_EnterReturnsTrue) != 0);
8939+
if (apply_edit_back_to_user_buffer)
89368940
{
89378941
// Apply new value immediately - copy modified buffer back
89388942
// Note that as soon as the input box is active, the in-widget value gets priority over any underlying modification of the input buffer

0 commit comments

Comments
 (0)