| 800 | } |
| 801 | |
| 802 | String QuickOpenResultContainer::get_selected() const { |
| 803 | ERR_FAIL_COND_V_MSG(has_nothing_selected(), String(), "Tried to get selected file, but nothing was selected."); |
| 804 | return candidates[selection_index].file_path; |
| 805 | } |
| 806 | |
| 807 | QuickOpenDisplayMode QuickOpenResultContainer::get_adaptive_display_mode(const Vector<StringName> &p_base_types) { |
| 808 | static const Vector<StringName> grid_preferred_types = { |
no test coverage detected