diff --git a/src/main.rs b/src/main.rs index 47703e8..52f32a5 100644 --- a/src/main.rs +++ b/src/main.rs @@ -175,11 +175,13 @@ impl eframe::App for App { } if cell_resp.clicked() { self.editor.selected = archetype; + self.editor.glyph = archetype.default_glyph(); } if ui.selectable_label(is_selected, archetype.name()) .clicked() { self.editor.selected = archetype; + self.editor.glyph = archetype.default_glyph(); } }); }