Horizontal distance preceding label when using TreeNode() or Bullet()
| 5925 | |
| 5926 | // Horizontal distance preceding label when using TreeNode() or Bullet() |
| 5927 | float ImGui::GetTreeNodeToLabelSpacing() |
| 5928 | { |
| 5929 | ImGuiContext& g = *GImGui; |
| 5930 | return g.FontSize + (g.Style.FramePadding.x * 2.0f); |
| 5931 | } |
| 5932 | |
| 5933 | // Set next TreeNode/CollapsingHeader open state. |
| 5934 | void ImGui::SetNextItemOpen(bool is_open, ImGuiCond cond) |
nothing calls this directly
no outgoing calls
no test coverage detected