From a6b53be383d9dbb0a755f923052a93c66f482579 Mon Sep 17 00:00:00 2001 From: RickyRister Date: Sat, 15 Mar 2025 22:43:15 -0700 Subject: [PATCH] Reduce bottom margin in deck dock --- .../ui/widgets/deck_editor/deck_editor_deck_dock_widget.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/cockatrice/src/client/ui/widgets/deck_editor/deck_editor_deck_dock_widget.cpp b/cockatrice/src/client/ui/widgets/deck_editor/deck_editor_deck_dock_widget.cpp index d24182167..a89f73aed 100644 --- a/cockatrice/src/client/ui/widgets/deck_editor/deck_editor_deck_dock_widget.cpp +++ b/cockatrice/src/client/ui/widgets/deck_editor/deck_editor_deck_dock_widget.cpp @@ -105,6 +105,8 @@ void DeckEditorDeckDockWidget::createDeckDock() auto *upperLayout = new QGridLayout; upperLayout->setObjectName("upperLayout"); + upperLayout->setContentsMargins(11, 11, 11, 0); + upperLayout->addWidget(nameLabel, 0, 0); upperLayout->addWidget(nameEdit, 0, 1);