| 7349 | } |
| 7350 | |
| 7351 | static ImGuiPtrOrIndex GetTabBarRefFromTabBar(ImGuiTabBar* tab_bar) |
| 7352 | { |
| 7353 | ImGuiContext& g = *GImGui; |
| 7354 | if (g.TabBars.Contains(tab_bar)) |
| 7355 | return ImGuiPtrOrIndex(g.TabBars.GetIndex(tab_bar)); |
| 7356 | return ImGuiPtrOrIndex(tab_bar); |
| 7357 | } |
| 7358 | |
| 7359 | bool ImGui::BeginTabBar(const char* str_id, ImGuiTabBarFlags flags) |
| 7360 | { |
no test coverage detected