mirror of
https://github.com/Cockatrice/Cockatrice.git
synced 2026-06-30 10:33:54 -07:00
Reduce padding in settings popup (#6504)
* Reduce padding in settings popup * reduce padding in PrintingSelectors settings * reduce padding in one of the VDD filter settings
This commit is contained in:
parent
ed1115f4c0
commit
21d60ec3f1
3 changed files with 4 additions and 0 deletions
|
|
@ -21,6 +21,7 @@ PrintingSelectorCardSortingWidget::PrintingSelectorCardSortingWidget(PrintingSel
|
||||||
{
|
{
|
||||||
setMinimumWidth(300);
|
setMinimumWidth(300);
|
||||||
sortToolBar = new QHBoxLayout(this);
|
sortToolBar = new QHBoxLayout(this);
|
||||||
|
sortToolBar->setContentsMargins(11, 0, 11, 0);
|
||||||
|
|
||||||
sortOptionsSelector = new QComboBox(this);
|
sortOptionsSelector = new QComboBox(this);
|
||||||
sortOptionsSelector->setFocusPolicy(Qt::StrongFocus);
|
sortOptionsSelector->setFocusPolicy(Qt::StrongFocus);
|
||||||
|
|
|
||||||
|
|
@ -10,6 +10,7 @@ SettingsPopupWidget::SettingsPopupWidget(QWidget *parent) : QWidget(parent, Qt::
|
||||||
{
|
{
|
||||||
// Main layout for the popup itself
|
// Main layout for the popup itself
|
||||||
layout = new QVBoxLayout(this);
|
layout = new QVBoxLayout(this);
|
||||||
|
layout->setContentsMargins(5, 5, 5, 5);
|
||||||
|
|
||||||
// Container for the content (with or without scroll area)
|
// Container for the content (with or without scroll area)
|
||||||
containerWidget = new QWidget();
|
containerWidget = new QWidget();
|
||||||
|
|
|
||||||
|
|
@ -14,6 +14,8 @@ VisualDatabaseDisplayRecentSetFilterSettingsWidget::VisualDatabaseDisplayRecentS
|
||||||
: QWidget(parent)
|
: QWidget(parent)
|
||||||
{
|
{
|
||||||
layout = new QHBoxLayout(this);
|
layout = new QHBoxLayout(this);
|
||||||
|
layout->setContentsMargins(0, 0, 0, 0);
|
||||||
|
|
||||||
setLayout(layout);
|
setLayout(layout);
|
||||||
|
|
||||||
filterToMostRecentSetsCheckBox = new QCheckBox(this);
|
filterToMostRecentSetsCheckBox = new QCheckBox(this);
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue