| 6616 | } |
| 6617 | |
| 6618 | ImGuiWindow* ImGui::FindWindowByName(const char* name) |
| 6619 | { |
| 6620 | ImGuiID id = ImHashStr(name); |
| 6621 | return FindWindowByID(id); |
| 6622 | } |
| 6623 | |
| 6624 | static void ApplyWindowSettings(ImGuiWindow* window, ImGuiWindowSettings* settings) |
| 6625 | { |
nothing calls this directly
no test coverage detected