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> <file alias="kilroy.png">resources/images/kilroy-256.png</file>
</qresource> </qresource>
<qresource prefix="/fonts"> <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> <file alias="saucecodepro-xlight.ttf">resources/SauceCodeProNerdFont-ExtraLight.ttf</file>
</qresource> </qresource>
</RCC> </RCC>

View File

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