| 4675 | #endif |
| 4676 | |
| 4677 | void IGFD::FileDialog::m_DrawSidePane(float vHeight) { |
| 4678 | ImGui::SameLine(); |
| 4679 | |
| 4680 | ImGui::BeginChild("##FileTypes", ImVec2(0, vHeight)); |
| 4681 | |
| 4682 | m_FileDialogInternal.getDialogConfig().sidePane(m_FileDialogInternal.filterManager.GetSelectedFilter().getFirstFilter().c_str(), m_FileDialogInternal.getDialogConfigRef().userDatas, &m_FileDialogInternal.canWeContinue); |
| 4683 | ImGui::EndChild(); |
| 4684 | } |
| 4685 | |
| 4686 | void IGFD::FileDialog::Close() { |
| 4687 | m_FileDialogInternal.dLGkey.clear(); |
nothing calls this directly
no outgoing calls
no test coverage detected