LibHTML: Fire the HtmlView::on_title_change hook after a load finishes

This commit is contained in:
Andreas Kling 2019-10-05 10:30:14 +02:00
parent 31e361b827
commit a8297657ab
Notes: sideshowbarker 2024-07-19 11:48:48 +09:00

View file

@ -175,4 +175,7 @@ void HtmlView::load(const URL& url)
document->normalize();
set_document(document);
if (on_title_change)
on_title_change(document->title());
}