void ui_menu_file_selector::custom_render(void *selectedref, float top, float bottom, float origx1, float origy1, float origx2, float origy2) { extra_text_render(container, top, bottom, origx1, origy1, origx2, origy2, m_current_directory.c_str(), NULL); }
void menu_file_manager::custom_render(void *selectedref, float top, float bottom, float origx1, float origy1, float origx2, float origy2) { const char *path; // access the path path = selected_device ? selected_device->filename() : nullptr; extra_text_render(top, bottom, origx1, origy1, origx2, origy2, nullptr, path); }
void ui_menu_file_manager::custom_render(void *selectedref, float top, float bottom, float origx1, float origy1, float origx2, float origy2) { const char *path; // access the path path = selected_device ? selected_device->filename() : NULL; extra_text_render(container, top, bottom, origx1, origy1, origx2, origy2, NULL, path); }