1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-15 09:34:59 +00:00

Base: Create /res/icons/serenity for misc. sized system icons

This commit is contained in:
thankyouverycool 2020-08-26 13:10:18 -04:00 committed by Andreas Kling
parent a49e0fa5d4
commit 0bb2025b69
9 changed files with 7 additions and 7 deletions

View file

@ -58,8 +58,8 @@ TreeView::TreeView()
set_background_role(ColorRole::Base);
set_foreground_role(ColorRole::BaseText);
set_column_headers_visible(false);
m_expand_bitmap = Gfx::Bitmap::load_from_file("/res/icons/treeview-expand.png");
m_collapse_bitmap = Gfx::Bitmap::load_from_file("/res/icons/treeview-collapse.png");
m_expand_bitmap = Gfx::Bitmap::load_from_file("/res/icons/serenity/treeview-expand.png");
m_collapse_bitmap = Gfx::Bitmap::load_from_file("/res/icons/serenity/treeview-collapse.png");
}
TreeView::~TreeView()