mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-29 20:28:56 +00:00
Qt: Fix search bar widget spacing
With setMargin(0), the widgets look awkwardly close to the window edges
This commit is contained in:
parent
8d0c15bb97
commit
752098de22
1 changed files with 1 additions and 1 deletions
|
@ -30,7 +30,7 @@ void SearchBar::CreateWidgets()
|
||||||
|
|
||||||
layout->addWidget(m_search_edit);
|
layout->addWidget(m_search_edit);
|
||||||
layout->addWidget(m_close_button);
|
layout->addWidget(m_close_button);
|
||||||
layout->setMargin(0);
|
layout->setSizeConstraint(QLayout::SetMinAndMaxSize);
|
||||||
|
|
||||||
setLayout(layout);
|
setLayout(layout);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue