| 1620 | } |
| 1621 | |
| 1622 | float IGFD::FilterManager::GetFilterComboBoxWidth() const { |
| 1623 | #if FILTER_COMBO_AUTO_SIZE |
| 1624 | const auto& combo_width = ImGui::CalcTextSize(m_SelectedFilter.title.c_str()).x + ImGui::GetFrameHeight() + ImGui::GetStyle().ItemInnerSpacing.x; |
| 1625 | return ImMax(combo_width, FILTER_COMBO_MIN_WIDTH); |
| 1626 | #else |
| 1627 | return FILTER_COMBO_MIN_WIDTH; |
| 1628 | #endif |
| 1629 | } |
| 1630 | |
| 1631 | bool IGFD::FilterManager::DrawFilterComboBox(FileDialogInternal& vFileDialogInternal) { |
| 1632 | if (!dLGFilters.empty()) { |