| 6159 | } |
| 6160 | |
| 6161 | void ImGui::AlignTextToFramePadding() |
| 6162 | { |
| 6163 | ImGuiWindow* window = GetCurrentWindow(); |
| 6164 | if (window->SkipItems) |
| 6165 | return; |
| 6166 | |
| 6167 | ImGuiContext& g = *GImGui; |
| 6168 | window->DC.CurrentLineHeight = ImMax(window->DC.CurrentLineHeight, g.FontSize + g.Style.FramePadding.y * 2); |
| 6169 | window->DC.CurrentLineTextBaseOffset = ImMax(window->DC.CurrentLineTextBaseOffset, g.Style.FramePadding.y); |
| 6170 | } |
| 6171 | |
| 6172 | // Add a label+text combo aligned to other label+value widgets |
| 6173 | void ImGui::LabelTextV(const char* label, const char* fmt, va_list args) |
nothing calls this directly
no test coverage detected