| 5628 | } |
| 5629 | |
| 5630 | ImGuiWindow* ImGui::FindWindowByName(const char* name) |
| 5631 | { |
| 5632 | ImGuiID id = ImHashStr(name); |
| 5633 | return FindWindowByID(id); |
| 5634 | } |
| 5635 | |
| 5636 | static void ApplyWindowSettings(ImGuiWindow* window, ImGuiWindowSettings* settings) |
| 5637 | { |
nothing calls this directly
no test coverage detected