| 6509 | } |
| 6510 | |
| 6511 | ImGuiWindow* ImGui::FindWindowByName(const char* name) |
| 6512 | { |
| 6513 | ImGuiID id = ImHashStr(name); |
| 6514 | return FindWindowByID(id); |
| 6515 | } |
| 6516 | |
| 6517 | static void ApplyWindowSettings(ImGuiWindow* window, ImGuiWindowSettings* settings) |
| 6518 | { |
nothing calls this directly
no test coverage detected