mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-28 11:49:44 +00:00
LibWeb: Remove Layout::Node::set_inline()
Now that this flag is no longer used, we can stop setting it.
This commit is contained in:
parent
8a3ca6416d
commit
a0e6882d99
Notes:
sideshowbarker
2024-07-17 06:19:06 +09:00
Author: https://github.com/awesomekling
Commit: a0e6882d99
12 changed files with 7 additions and 34 deletions
|
@ -20,9 +20,7 @@ HTMLLabelElement::~HTMLLabelElement() = default;
|
|||
|
||||
RefPtr<Layout::Node> HTMLLabelElement::create_layout_node(NonnullRefPtr<CSS::StyleProperties> style)
|
||||
{
|
||||
auto layout_node = adopt_ref(*new Layout::Label(document(), this, move(style)));
|
||||
layout_node->set_inline(true);
|
||||
return layout_node;
|
||||
return adopt_ref(*new Layout::Label(document(), this, move(style)));
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue