(ui: &mut egui::Ui, text: &str, appearance: &Appearance)
| 496 | const HELP_ICON: &str = "ℹ"; |
| 497 | |
| 498 | fn subheading(ui: &mut egui::Ui, text: &str, appearance: &Appearance) { |
| 499 | ui.label( |
| 500 | RichText::new(text).size(appearance.ui_font.size).color(appearance.emphasized_text_color), |
| 501 | ); |
| 502 | } |
| 503 | |
| 504 | fn format_path(path: &Option<Utf8PlatformPathBuf>, appearance: &Appearance) -> RichText { |
| 505 | let mut color = appearance.replace_color; |
no outgoing calls
no test coverage detected