diff --git a/data/fonts/icons.ttf b/data/fonts/icons.ttf index 09b88f1e..d74fe737 100644 Binary files a/data/fonts/icons.ttf and b/data/fonts/icons.ttf differ diff --git a/data/plugins/treeview.lua b/data/plugins/treeview.lua index 10536bd7..8f992e61 100644 --- a/data/plugins/treeview.lua +++ b/data/plugins/treeview.lua @@ -162,7 +162,7 @@ function TreeView:draw() -- icons x = x + (item.depth - root_depth) * style.padding.x + style.padding.x if item.type == "dir" then - local icon1 = item.expanded and "e" or "c" + local icon1 = item.expanded and "-" or "+" local icon2 = item.expanded and "D" or "d" common.draw_text(style.icon_font, color, icon1, nil, x, y, 0, h) x = x + style.padding.x