reduce vertical spacing in PrintingSelector (#5342)

This commit is contained in:
RickyRister 2024-12-27 00:35:38 -08:00 committed by GitHub
parent 7e9bd88eb4
commit 83db00d7a3
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 5 additions and 1 deletions

View file

@ -13,6 +13,7 @@ CardSizeWidget::CardSizeWidget(QWidget *parent, FlowWidget *flowWidget, int defa
: parent(parent), flowWidget(flowWidget)
{
cardSizeLayout = new QHBoxLayout(this);
cardSizeLayout->setContentsMargins(9, 0, 9, 0);
setLayout(cardSizeLayout);
cardSizeLabel = new QLabel(tr("Card Size"), this);