1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 14:27:35 +00:00

Ladybird: Remove spacing between toolbar and web view

This commit is contained in:
Andreas Kling 2022-09-09 14:27:59 +02:00 committed by Andrew Kaster
parent d74802e4e2
commit f4a9b382b1

View file

@ -22,6 +22,7 @@ Tab::Tab(QMainWindow* window)
: m_window(window)
{
m_layout = new QBoxLayout(QBoxLayout::Direction::TopToBottom, this);
m_layout->setSpacing(0);
m_layout->setContentsMargins(0, 0, 0, 0);
m_view = new WebView;