Skip to content

InputText freeze on focus loss #4972

@Azuna1

Description

@Azuna1

Version/Branch of Dear ImGui:

Version: 1.87
Branch: master

Back-end/Renderer/Compiler/OS

Back-ends: imgui_impl_win32.cpp + imgui_impl_dx9.cpp
Operating System: Windows 10

My Issue/Question:

Upgrading ImGui from version 1.80 to 1.87 introduced my application to deadlock in some "external code: Category IO | Kernel"
I was not able to pinpoint what actualy causes it.
Downgrading back to 1.80 resolves this issue

Steps to reproduce:
Click into demo widget inputtext, write text, click somewhere else inside or outside the imgui window

Cant reproduce on example_win32_directx9 v1.87

ImGui testcode was simply:

        ImGui_ImplDX9_NewFrame();
	ImGui_ImplWin32_NewFrame();
	ImGui::NewFrame();

	bool bopen = true;
	ImGui::ShowDemoWindow(&bopen);
	ImGui::EndFrame();
	ImGui::Render();
	ImGui_ImplDX9_RenderDrawData(ImGui::GetDrawData());

Metadata

Metadata

Assignees

No one assigned

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions