| 7693 | } |
| 7694 | |
| 7695 | void ImGui::DebugNodeTypingSelectState(ImGuiTypingSelectState* data) |
| 7696 | { |
| 7697 | #ifndef IMGUI_DISABLE_DEBUG_TOOLS |
| 7698 | Text("SearchBuffer = \"%s\"", data->SearchBuffer); |
| 7699 | Text("SingleCharMode = %d, Size = %d, Lock = %d", data->Request.SingleCharMode, data->Request.SingleCharSize, data->SingleCharModeLock); |
| 7700 | Text("LastRequest = time: %.2f, frame: %d", data->LastRequestTime, data->LastRequestFrame); |
| 7701 | #else |
| 7702 | IM_UNUSED(data); |
| 7703 | #endif |
| 7704 | } |
| 7705 | |
| 7706 | //------------------------------------------------------------------------- |
| 7707 | // [SECTION] Widgets: Box-Select support |
nothing calls this directly
no outgoing calls
no test coverage detected