mirror of
https://github.com/Cockatrice/Cockatrice.git
synced 2026-06-25 16:13:54 -07:00
[VDE] Reduce spacing in deck view toolbar (#6591)
This commit is contained in:
parent
d410078673
commit
a096a0e3bb
2 changed files with 3 additions and 0 deletions
|
|
@ -7,6 +7,8 @@
|
||||||
VisualDeckDisplayOptionsWidget::VisualDeckDisplayOptionsWidget(QWidget *parent) : QWidget(parent)
|
VisualDeckDisplayOptionsWidget::VisualDeckDisplayOptionsWidget(QWidget *parent) : QWidget(parent)
|
||||||
{
|
{
|
||||||
groupAndSortLayout = new QHBoxLayout(this);
|
groupAndSortLayout = new QHBoxLayout(this);
|
||||||
|
groupAndSortLayout->setContentsMargins(0, 0, 0, 0);
|
||||||
|
groupAndSortLayout->setSpacing(3);
|
||||||
groupAndSortLayout->setAlignment(Qt::AlignLeft);
|
groupAndSortLayout->setAlignment(Qt::AlignLeft);
|
||||||
this->setLayout(groupAndSortLayout);
|
this->setLayout(groupAndSortLayout);
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -161,6 +161,7 @@ void VisualDeckEditorWidget::initializeDisplayOptionsAndSearchWidget()
|
||||||
|
|
||||||
displayOptionsAndSearch = new QWidget(this);
|
displayOptionsAndSearch = new QWidget(this);
|
||||||
displayOptionsAndSearchLayout = new QHBoxLayout(displayOptionsAndSearch);
|
displayOptionsAndSearchLayout = new QHBoxLayout(displayOptionsAndSearch);
|
||||||
|
displayOptionsAndSearchLayout->setContentsMargins(0, 0, 0, 0);
|
||||||
displayOptionsAndSearchLayout->setAlignment(Qt::AlignLeft);
|
displayOptionsAndSearchLayout->setAlignment(Qt::AlignLeft);
|
||||||
displayOptionsAndSearch->setLayout(displayOptionsAndSearchLayout);
|
displayOptionsAndSearch->setLayout(displayOptionsAndSearchLayout);
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue