Horizontal distance preceding label when using TreeNode() or Bullet()
| 6204 | |
| 6205 | // Horizontal distance preceding label when using TreeNode() or Bullet() |
| 6206 | float ImGui::GetTreeNodeToLabelSpacing() |
| 6207 | { |
| 6208 | ImGuiContext& g = *GImGui; |
| 6209 | return g.FontSize + (g.Style.FramePadding.x * 2.0f); |
| 6210 | } |
| 6211 | |
| 6212 | // Set next TreeNode/CollapsingHeader open state. |
| 6213 | void ImGui::SetNextItemOpen(bool is_open, ImGuiCond cond) |
nothing calls this directly
no outgoing calls
no test coverage detected