| 7528 | } |
| 7529 | |
| 7530 | static ImGuiPtrOrIndex GetTabBarRefFromTabBar(ImGuiTabBar* tab_bar) |
| 7531 | { |
| 7532 | ImGuiContext& g = *GImGui; |
| 7533 | if (g.TabBars.Contains(tab_bar)) |
| 7534 | return ImGuiPtrOrIndex(g.TabBars.GetIndex(tab_bar)); |
| 7535 | return ImGuiPtrOrIndex(tab_bar); |
| 7536 | } |
| 7537 | |
| 7538 | bool ImGui::BeginTabBar(const char* str_id, ImGuiTabBarFlags flags) |
| 7539 | { |
no test coverage detected