| 9605 | } |
| 9606 | |
| 9607 | static void* WindowSettingsHandler_ReadOpen(ImGuiContext*, ImGuiSettingsHandler*, const char* name) |
| 9608 | { |
| 9609 | ImGuiWindowSettings* settings = ImGui::FindWindowSettings(ImHashStr(name)); |
| 9610 | if (!settings) |
| 9611 | settings = ImGui::CreateNewWindowSettings(name); |
| 9612 | return (void*)settings; |
| 9613 | } |
| 9614 | |
| 9615 | static void WindowSettingsHandler_ReadLine(ImGuiContext*, ImGuiSettingsHandler*, void* entry, const char* line) |
| 9616 | { |
nothing calls this directly
no test coverage detected