| 47 | |
| 48 | namespace ImGui { |
| 49 | void LeftLabel(const char* text) { |
| 50 | float vpos = ImGui::GetCursorPosY(); |
| 51 | ImGui::SetCursorPosY(vpos + GImGui->Style.FramePadding.y); |
| 52 | ImGui::Text(text); |
| 53 | ImGui::SameLine(); |
| 54 | ImGui::SetCursorPosY(vpos); |
| 55 | } |
| 56 | } |
no outgoing calls
no test coverage detected