diff options
author | Dheisom Gomes <dheisomgomes0@gmail.com> | 2022-06-14 09:55:55 -0300 |
---|---|---|
committer | Dheisom Gomes <dheisomgomes0@gmail.com> | 2022-06-14 09:55:55 -0300 |
commit | dc73f3d209968c75e0a46e7a30a39a8e347ed4ae (patch) | |
tree | 21d8341c7f0612fde6dc44788581840079db59ef /plugins/nonicons.lua | |
parent | 42651b2b672bfb407f483ec4120391b8ed7c605a (diff) | |
download | lite-xl-plugins-dc73f3d209968c75e0a46e7a30a39a8e347ed4ae.tar.gz lite-xl-plugins-dc73f3d209968c75e0a46e7a30a39a8e347ed4ae.zip |
Fixed wrong icon on opened directory
Diffstat (limited to 'plugins/nonicons.lua')
-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 |