1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-20 13:25:08 +00:00

LibHTML: Rename Document's invalidate_{style,layout}() to update_foo()

This commit is contained in:
Andreas Kling 2019-10-14 17:56:19 +02:00
parent 61ef17b87a
commit 667b31746a
5 changed files with 13 additions and 13 deletions

View file

@ -30,7 +30,7 @@ void HTMLImageElement::load_image(const String& src)
}
m_bitmap = load_png_from_memory(data.data(), data.size());
document().invalidate_layout();
document().update_layout();
});
}