1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-28 16:07:45 +00:00

Base+Browser: Add Browser Icons

Add or insert some missing browser icons.
This commit is contained in:
electrikmilk 2022-02-06 21:33:20 -05:00 committed by Andreas Kling
parent 1b9e98a17d
commit 4bfed6a5ed
8 changed files with 21 additions and 6 deletions

View file

@ -19,6 +19,7 @@ struct IconBag final {
RefPtr<Gfx::Bitmap> bookmark_contour { nullptr };
RefPtr<Gfx::Bitmap> bookmark_filled { nullptr };
RefPtr<Gfx::Bitmap> inspector_object { nullptr };
RefPtr<Gfx::Bitmap> go_home { nullptr };
RefPtr<Gfx::Bitmap> find { nullptr };
RefPtr<Gfx::Bitmap> color_chooser { nullptr };
RefPtr<Gfx::Bitmap> delete_icon { nullptr };
@ -26,7 +27,13 @@ struct IconBag final {
RefPtr<Gfx::Bitmap> duplicate_tab { nullptr };
RefPtr<Gfx::Bitmap> code { nullptr };
RefPtr<Gfx::Bitmap> tree { nullptr };
RefPtr<Gfx::Bitmap> layout { nullptr };
RefPtr<Gfx::Bitmap> layers { nullptr };
RefPtr<Gfx::Bitmap> inspect { nullptr };
RefPtr<Gfx::Bitmap> history { nullptr };
RefPtr<Gfx::Bitmap> cookie { nullptr };
RefPtr<Gfx::Bitmap> trash_can { nullptr };
RefPtr<Gfx::Bitmap> clear_cache { nullptr };
RefPtr<Gfx::Bitmap> spoof { nullptr };
};
}