| 5506 | } |
| 5507 | |
| 5508 | ImGuiWindow* ImGui::FindWindowByName(const char* name) |
| 5509 | { |
| 5510 | ImGuiID id = ImHashStr(name); |
| 5511 | return FindWindowByID(id); |
| 5512 | } |
| 5513 | |
| 5514 | static void ApplyWindowSettings(ImGuiWindow* window, ImGuiWindowSettings* settings) |
| 5515 | { |
nothing calls this directly
no test coverage detected