Window has already passed the IsWindowNavFocusable()
| 11677 | |
| 11678 | // Window has already passed the IsWindowNavFocusable() |
| 11679 | static const char* GetFallbackWindowNameForWindowingList(ImGuiWindow* window) |
| 11680 | { |
| 11681 | if (window->Flags & ImGuiWindowFlags_Popup) |
| 11682 | return ImGui::LocalizeGetMsg(ImGuiLocKey_WindowingPopup); |
| 11683 | if ((window->Flags & ImGuiWindowFlags_MenuBar) && strcmp(window->Name, "##MainMenuBar") == 0) |
| 11684 | return ImGui::LocalizeGetMsg(ImGuiLocKey_WindowingMainMenuBar); |
| 11685 | return ImGui::LocalizeGetMsg(ImGuiLocKey_WindowingUntitled); |
| 11686 | } |
| 11687 | |
| 11688 | // Overlay displayed when using CTRL+TAB. Called by EndFrame(). |
| 11689 | void ImGui::NavUpdateWindowingOverlay() |
no test coverage detected