mirror of
https://github.com/Drezil/imgui.git
synced 2025-07-13 08:19:55 +02:00
IO.WantInputCharacters -> WantTextInput (#305)
This commit is contained in:
@ -1343,7 +1343,7 @@ void ImGui::ShowTestWindow(bool* opened)
|
||||
|
||||
ImGui::Text("WantCaptureMouse: %s", io.WantCaptureMouse ? "true" : "false");
|
||||
ImGui::Text("WantCaptureKeyboard: %s", io.WantCaptureKeyboard ? "true" : "false");
|
||||
ImGui::Text("WantInputCharacters: %s", io.WantInputCharacters ? "true" : "false");
|
||||
ImGui::Text("WantTextInput: %s", io.WantTextInput ? "true" : "false");
|
||||
|
||||
ImGui::Button("Hover me\nto enforce\ninputs capture");
|
||||
if (ImGui::IsItemHovered())
|
||||
|
Reference in New Issue
Block a user