1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 07:58:11 +00:00

LibWeb: Merge Document::layout() and Document::update_layout()

There is now only Document::update_layout().
This commit is contained in:
Andreas Kling 2020-12-14 10:39:39 +01:00
parent dbfce38c90
commit 3c9dcec442
5 changed files with 6 additions and 15 deletions

View file

@ -103,7 +103,7 @@ void Frame::set_size(const Gfx::IntSize& size)
return;
m_size = size;
if (m_document)
m_document->layout();
m_document->update_layout();
}
void Frame::set_viewport_scroll_offset(const Gfx::IntPoint& offset)