diff --git a/resources.qrc b/resources.qrc index ac4c2f2..82ec730 100644 --- a/resources.qrc +++ b/resources.qrc @@ -3,8 +3,6 @@ resources/images/kilroy-256.png - resources/SauceCodeProNerdFont-Black.ttf - resources/SauceCodeProNerdFont-Light.ttf resources/SauceCodeProNerdFont-ExtraLight.ttf \ No newline at end of file diff --git a/resources/SauceCodeProNerdFont-Black.ttf b/resources/SauceCodeProNerdFont-Black.ttf deleted file mode 100644 index bbfc2b5..0000000 Binary files a/resources/SauceCodeProNerdFont-Black.ttf and /dev/null differ diff --git a/resources/SauceCodeProNerdFont-Light.ttf b/resources/SauceCodeProNerdFont-Light.ttf deleted file mode 100644 index 431684e..0000000 Binary files a/resources/SauceCodeProNerdFont-Light.ttf and /dev/null differ diff --git a/src/ide/tui/explorer.rs b/src/ide/tui/explorer.rs index 081f6d7..f8899cb 100644 --- a/src/ide/tui/explorer.rs +++ b/src/ide/tui/explorer.rs @@ -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!(