Remove unused fonts.
Disable glyphs in TUI for now.
This commit is contained in:
@@ -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>
|
||||||
Binary file not shown.
Binary file not shown.
@@ -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!(
|
||||||
|
|||||||
Reference in New Issue
Block a user