diff options
author | Guldoman <giulio.lettieri@gmail.com> | 2022-06-14 17:58:39 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-06-14 17:58:39 +0200 |
commit | 93151d8fb0ae2dc5426bce78a778ec79135e26e3 (patch) | |
tree | 2270dbd19a3cf4cc5054141e320c1d8b9225e062 | |
parent | aef7dd3b2f78e1cc7624f94e250e4d2a38fa1c84 (diff) | |
parent | dc73f3d209968c75e0a46e7a30a39a8e347ed4ae (diff) | |
download | lite-xl-plugins-93151d8fb0ae2dc5426bce78a778ec79135e26e3.tar.gz lite-xl-plugins-93151d8fb0ae2dc5426bce78a778ec79135e26e3.zip |
Merge pull request #103 from fortrax-br/nonicons
[nonicons] Fixed wrong icon on opened directory
-rw-r--r-- | plugins/nonicons.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/nonicons.lua b/plugins/nonicons.lua index 9540ce6..143da13 100644 --- a/plugins/nonicons.lua +++ b/plugins/nonicons.lua @@ -121,7 +121,7 @@ function TreeView:get_item_icon(item, active, hovered) font = icon_font color = style.text if item.type == "dir" then - icon = item.expanded and "" or "" -- unicode 61771 and 61772 + icon = item.expanded and "" or "" -- unicode U+F23C and U+F23B end end if config.plugins.nonicons.draw_treeview_icons then |