| 7708 | } |
| 7709 | |
| 7710 | void ImGui::DebugNodeTypingSelectState(ImGuiTypingSelectState* data) |
| 7711 | { |
| 7712 | #ifndef IMGUI_DISABLE_DEBUG_TOOLS |
| 7713 | Text("SearchBuffer = \"%s\"", data->SearchBuffer); |
| 7714 | Text("SingleCharMode = %d, Size = %d, Lock = %d", data->Request.SingleCharMode, data->Request.SingleCharSize, data->SingleCharModeLock); |
| 7715 | Text("LastRequest = time: %.2f, frame: %d", data->LastRequestTime, data->LastRequestFrame); |
| 7716 | #else |
| 7717 | IM_UNUSED(data); |
| 7718 | #endif |
| 7719 | } |
| 7720 | |
| 7721 | //------------------------------------------------------------------------- |
| 7722 | // [SECTION] Widgets: Box-Select support |
nothing calls this directly
no outgoing calls
no test coverage detected