diff options
author | Andres Vieira <anvieiravazquez@gmail.com> | 2020-04-26 20:58:05 +0200 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2020-04-26 21:13:57 +0200 |
commit | 88368df9a200958ca9c994600e3a1a702a3c8c6e (patch) | |
tree | 08468c46b47ea15173010fba3f5dbe17c54d187a /Applications/Browser/main.cpp | |
parent | 14c7988eeafd67722bbc246812d536345924c078 (diff) | |
download | serenity-88368df9a200958ca9c994600e3a1a702a3c8c6e.zip |
Base+Browser: Add an icon for the serenity Browser and make it use it
Browser was using the filetype-html icon instead of a dedicated one, so
we now have the globe from that icon reimagined and in good Buggie
company :^)
Diffstat (limited to 'Applications/Browser/main.cpp')
-rw-r--r-- | Applications/Browser/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Applications/Browser/main.cpp b/Applications/Browser/main.cpp index 648f7f4ae3..ec67ace18e 100644 --- a/Applications/Browser/main.cpp +++ b/Applications/Browser/main.cpp @@ -169,7 +169,7 @@ int main(int argc, char** argv) }; window_actions.on_about = [&] { - GUI::AboutDialog::show("Browser", Gfx::Bitmap::load_from_file("/res/icons/32x32/filetype-html.png"), window); + GUI::AboutDialog::show("Browser", Gfx::Bitmap::load_from_file("/res/icons/32x32/app-browser.png"), window); }; window_actions.on_show_bookmarks_bar = [&](auto& action) { |