1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 22:57:44 +00:00

Browser: Show website favicons in the location bar :^)

This commit is contained in:
Andreas Kling 2020-06-29 20:35:53 +02:00
parent b8a50e9d89
commit 167da1fa84

View file

@ -211,6 +211,7 @@ Tab::Tab()
m_page_view->on_favicon_change = [this](auto& icon) {
m_icon = icon;
m_location_box->set_icon(&icon);
if (on_favicon_change)
on_favicon_change(icon);
};