(
frame: &mut Frame<'_>,
app: &App,
edit: &crate::app::SettingEditState,
area: Rect,
)
| 123 | } |
| 124 | |
| 125 | fn draw_edit_overlay( |
| 126 | frame: &mut Frame<'_>, |
| 127 | app: &App, |
| 128 | edit: &crate::app::SettingEditState, |
| 129 | area: Rect, |
| 130 | ) { |
| 131 | let Some(entry) = app.sandbox_settings.get(edit.index) else { |
| 132 | return; |
| 133 | }; |
| 134 | super::draw_setting_edit_overlay(frame, &entry.key, entry.kind, edit, area, &app.theme); |
| 135 | } |
| 136 | |
| 137 | fn draw_confirm_set(frame: &mut Frame<'_>, app: &App, idx: usize, area: Rect) { |
| 138 | let t = &app.theme; |
no test coverage detected