1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 15:37:46 +00:00

Base+Browser: Add browser icons

Add local storage and style sheet icons. I also noticed the name of the
DOM tree icon needed updated (tree => dom_tree).
This commit is contained in:
electrikmilk 2022-02-09 13:57:50 -05:00 committed by Linus Groh
parent 3bfcd7b52d
commit 133a30c8b7
4 changed files with 10 additions and 6 deletions

View file

@ -26,12 +26,14 @@ struct IconBag final {
RefPtr<Gfx::Bitmap> new_tab { nullptr };
RefPtr<Gfx::Bitmap> duplicate_tab { nullptr };
RefPtr<Gfx::Bitmap> code { nullptr };
RefPtr<Gfx::Bitmap> tree { nullptr };
RefPtr<Gfx::Bitmap> dom_tree { nullptr };
RefPtr<Gfx::Bitmap> layout { nullptr };
RefPtr<Gfx::Bitmap> layers { nullptr };
RefPtr<Gfx::Bitmap> filetype_css { nullptr };
RefPtr<Gfx::Bitmap> inspect { nullptr };
RefPtr<Gfx::Bitmap> history { nullptr };
RefPtr<Gfx::Bitmap> cookie { nullptr };
RefPtr<Gfx::Bitmap> local_storage { nullptr };
RefPtr<Gfx::Bitmap> trash_can { nullptr };
RefPtr<Gfx::Bitmap> clear_cache { nullptr };
RefPtr<Gfx::Bitmap> spoof { nullptr };