diff --git a/Applications/Browser/main.cpp b/Applications/Browser/main.cpp index 648f7f4ae31..ec67ace18ea 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) { diff --git a/Base/res/apps/Browser.af b/Base/res/apps/Browser.af index 038649468f5..acd6b598172 100644 --- a/Base/res/apps/Browser.af +++ b/Base/res/apps/Browser.af @@ -4,5 +4,5 @@ Executable=/bin/Browser Category=Internet [Icons] -16x16=/res/icons/16x16/filetype-html.png -32x32=/res/icons/32x32/filetype-html.png +16x16=/res/icons/16x16/app-browser.png +32x32=/res/icons/32x32/app-browser.png diff --git a/Base/res/icons/16x16/app-browser.png b/Base/res/icons/16x16/app-browser.png new file mode 100644 index 00000000000..29e03d4919b Binary files /dev/null and b/Base/res/icons/16x16/app-browser.png differ diff --git a/Base/res/icons/32x32/app-browser.png b/Base/res/icons/32x32/app-browser.png new file mode 100644 index 00000000000..1dc8c195a0a Binary files /dev/null and b/Base/res/icons/32x32/app-browser.png differ