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:
RickyRister 2026-01-14 01:49:07 -08:00 committed by GitHub
parent ed1115f4c0
commit 21d60ec3f1
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 4 additions and 0 deletions

View file

@ -21,6 +21,7 @@ PrintingSelectorCardSortingWidget::PrintingSelectorCardSortingWidget(PrintingSel
{
setMinimumWidth(300);
sortToolBar = new QHBoxLayout(this);
sortToolBar->setContentsMargins(11, 0, 11, 0);
sortOptionsSelector = new QComboBox(this);
sortOptionsSelector->setFocusPolicy(Qt::StrongFocus);

View file

@ -10,6 +10,7 @@ SettingsPopupWidget::SettingsPopupWidget(QWidget *parent) : QWidget(parent, Qt::
{
// Main layout for the popup itself
layout = new QVBoxLayout(this);
layout->setContentsMargins(5, 5, 5, 5);
// Container for the content (with or without scroll area)
containerWidget = new QWidget();

View file

@ -14,6 +14,8 @@ VisualDatabaseDisplayRecentSetFilterSettingsWidget::VisualDatabaseDisplayRecentS
: QWidget(parent)
{
layout = new QHBoxLayout(this);
layout->setContentsMargins(0, 0, 0, 0);
setLayout(layout);
filterToMostRecentSetsCheckBox = new QCheckBox(this);