Horizontal distance preceding label when using TreeNode() or Bullet()
| 7236 | |
| 7237 | // Horizontal distance preceding label when using TreeNode() or Bullet() |
| 7238 | float ImGui::GetTreeNodeToLabelSpacing() |
| 7239 | { |
| 7240 | ImGuiContext& g = *GImGui; |
| 7241 | return g.FontSize + (g.Style.FramePadding.x * 2.0f); |
| 7242 | } |
| 7243 | |
| 7244 | // Set next TreeNode/CollapsingHeader open state. |
| 7245 | void ImGui::SetNextItemOpen(bool is_open, ImGuiCond cond) |
nothing calls this directly
no outgoing calls
no test coverage detected