Reshow the provider selector (for back navigation)
(&mut self)
| 173 | |
| 174 | /// Reshow the provider selector (for back navigation) |
| 175 | pub fn reshow(&mut self) { |
| 176 | if !self.templates.is_empty() || !builtin_provider_templates().is_empty() { |
| 177 | self.templates = builtin_provider_templates(); |
| 178 | self.build_rows(); |
| 179 | self.visible = true; |
| 180 | } |
| 181 | } |
| 182 | |
| 183 | fn build_rows(&mut self) { |
| 184 | self.rows.clear(); |
nothing calls this directly
no test coverage detected