Window has already passed the IsWindowNavFocusable()
| 14428 | |
| 14429 | // Window has already passed the IsWindowNavFocusable() |
| 14430 | static const char* GetFallbackWindowNameForWindowingList(ImGuiWindow* window) |
| 14431 | { |
| 14432 | if (window->Flags & ImGuiWindowFlags_Popup) |
| 14433 | return ImGui::LocalizeGetMsg(ImGuiLocKey_WindowingPopup); |
| 14434 | if ((window->Flags & ImGuiWindowFlags_MenuBar) && strcmp(window->Name, "##MainMenuBar") == 0) |
| 14435 | return ImGui::LocalizeGetMsg(ImGuiLocKey_WindowingMainMenuBar); |
| 14436 | return ImGui::LocalizeGetMsg(ImGuiLocKey_WindowingUntitled); |
| 14437 | } |
| 14438 | |
| 14439 | // Overlay displayed when using CTRL+TAB. Called by EndFrame(). |
| 14440 | void ImGui::NavUpdateWindowingOverlay() |
no test coverage detected