Window has already passed the IsWindowNavFocusable()
| 14784 | |
| 14785 | // Window has already passed the IsWindowNavFocusable() |
| 14786 | static const char* GetFallbackWindowNameForWindowingList(ImGuiWindow* window) |
| 14787 | { |
| 14788 | if (window->Flags & ImGuiWindowFlags_Popup) |
| 14789 | return ImGui::LocalizeGetMsg(ImGuiLocKey_WindowingPopup); |
| 14790 | if ((window->Flags & ImGuiWindowFlags_MenuBar) && strcmp(window->Name, "##MainMenuBar") == 0) |
| 14791 | return ImGui::LocalizeGetMsg(ImGuiLocKey_WindowingMainMenuBar); |
| 14792 | return ImGui::LocalizeGetMsg(ImGuiLocKey_WindowingUntitled); |
| 14793 | } |
| 14794 | |
| 14795 | // Overlay displayed when using Ctrl+Tab. Called by EndFrame(). |
| 14796 | void ImGui::NavUpdateWindowingOverlay() |
no test coverage detected