| 1682 | } |
| 1683 | |
| 1684 | float IGFD::FilterManager::GetFilterComboBoxWidth() const { |
| 1685 | #if FILTER_COMBO_AUTO_SIZE |
| 1686 | const auto& combo_width = ImGui::CalcTextSize(m_SelectedFilter.title.c_str()).x + ImGui::GetFrameHeight() + ImGui::GetStyle().ItemInnerSpacing.x; |
| 1687 | return ImMax(combo_width, FILTER_COMBO_MIN_WIDTH); |
| 1688 | #else |
| 1689 | return FILTER_COMBO_MIN_WIDTH; |
| 1690 | #endif |
| 1691 | } |
| 1692 | |
| 1693 | bool IGFD::FilterManager::DrawFilterComboBox(FileDialogInternal& vFileDialogInternal) { |
| 1694 | if (!dLGFilters.empty()) { |
no test coverage detected