Remove unused fonts.

Disable glyphs in TUI for now.
This commit is contained in:
2026-02-28 13:06:03 -05:00
parent bfd81c5133
commit 1c3e3753d7
4 changed files with 4 additions and 4 deletions

View File

@@ -3,8 +3,6 @@
<file alias="kilroy.png">resources/images/kilroy-256.png</file>
</qresource>
<qresource prefix="/fonts">
<file alias="saucecodepro.ttf">resources/SauceCodeProNerdFont-Black.ttf</file>
<file alias="saucecodepro-light.ttf">resources/SauceCodeProNerdFont-Light.ttf</file>
<file alias="saucecodepro-xlight.ttf">resources/SauceCodeProNerdFont-ExtraLight.ttf</file>
</qresource>
</RCC>

View File

@@ -62,7 +62,8 @@ impl<'a> Explorer<'a> {
} else {
children.push(TreeItem::new_leaf(
entry_meta.abs_path.clone(),
format!("{} {}", entry_meta.icon.icon, entry_meta.file_name.as_str()),
format!("{}", entry_meta.file_name.as_str()),
// format!("{} {}", entry_meta.icon.icon, entry_meta.file_name.as_str()),
));
}
}
@@ -72,7 +73,8 @@ impl<'a> Explorer<'a> {
// For a file tree this is fine because we shouldn't list the same object twice.
TreeItem::new(
path_meta.abs_path.clone(),
format!("{} {}", path_meta.icon.icon, path_meta.file_name.as_str()),
format!("{}", path_meta.file_name.as_str()),
// format!("{} {}", path_meta.icon.icon, path_meta.file_name.as_str()),
children,
)
.context(format!(