From f4a9b382b17762ca67b585316091c9152e1f5f14 Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Fri, 9 Sep 2022 14:27:59 +0200 Subject: [PATCH] Ladybird: Remove spacing between toolbar and web view --- Ladybird/Tab.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/Ladybird/Tab.cpp b/Ladybird/Tab.cpp index eb6fc56b91..bc8302ec69 100644 --- a/Ladybird/Tab.cpp +++ b/Ladybird/Tab.cpp @@ -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;