| 7728 | } |
| 7729 | |
| 7730 | void ImGui::DebugNodeTypingSelectState(ImGuiTypingSelectState* data) |
| 7731 | { |
| 7732 | #ifndef IMGUI_DISABLE_DEBUG_TOOLS |
| 7733 | Text("SearchBuffer = \"%s\"", data->SearchBuffer); |
| 7734 | Text("SingleCharMode = %d, Size = %d, Lock = %d", data->Request.SingleCharMode, data->Request.SingleCharSize, data->SingleCharModeLock); |
| 7735 | Text("LastRequest = time: %.2f, frame: %d", data->LastRequestTime, data->LastRequestFrame); |
| 7736 | #else |
| 7737 | IM_UNUSED(data); |
| 7738 | #endif |
| 7739 | } |
| 7740 | |
| 7741 | //------------------------------------------------------------------------- |
| 7742 | // [SECTION] Widgets: Box-Select support |
nothing calls this directly
no outgoing calls
no test coverage detected