┌   ┐
54
└   ┘

summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorIsmael Asensio <[email protected]>2022-05-04 20:30:01 +0200
committerNate Graham <[email protected]>2022-05-06 20:10:04 +0000
commit2c91112c61a5c32fe278511b119804107ceadcdd (patch)
tree82aa36c64156fc26b71747b6da92e79bb3124d03 /src
parent553cb880c249c34794d694836cc53a7f4bb31858 (diff)
SearchBox: Add topMargin to balance the spacing
Diffstat (limited to 'src')
-rw-r--r--src/search/dolphinsearchbox.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/search/dolphinsearchbox.cpp b/src/search/dolphinsearchbox.cpp
index 860d9f6cd..022fabfa4 100644
--- a/src/search/dolphinsearchbox.cpp
+++ b/src/search/dolphinsearchbox.cpp
@@ -440,7 +440,7 @@ void DolphinSearchBox::init()
m_optionsScrollArea->setWidgetResizable(true);
m_topLayout = new QVBoxLayout(this);
- m_topLayout->setContentsMargins(0, 0, 0, 0);
+ m_topLayout->setContentsMargins(0, Dolphin::LAYOUT_SPACING_SMALL, 0, 0);
m_topLayout->setSpacing(Dolphin::LAYOUT_SPACING_SMALL);
m_topLayout->addLayout(searchInputLayout);
m_topLayout->addWidget(m_optionsScrollArea);