From b68a0220031b34ad2d97b98ab76012dbc877f77c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lukas=20Br=C3=BCbach?= Date: Fri, 12 Dec 2025 02:34:11 +0100 Subject: [PATCH] Move layout. Took 4 minutes Took 10 seconds --- .../deck_editor/deck_editor_deck_dock_widget.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/cockatrice/src/interface/widgets/deck_editor/deck_editor_deck_dock_widget.cpp b/cockatrice/src/interface/widgets/deck_editor/deck_editor_deck_dock_widget.cpp index df1807a60..e058b369d 100644 --- a/cockatrice/src/interface/widgets/deck_editor/deck_editor_deck_dock_widget.cpp +++ b/cockatrice/src/interface/widgets/deck_editor/deck_editor_deck_dock_widget.cpp @@ -214,13 +214,13 @@ void DeckEditorDeckDockWidget::createDeckDock() upperLayout->addWidget(commentsLabel, 1, 0); upperLayout->addWidget(commentsEdit, 1, 1); - upperLayout->addWidget(deckTagsDisplayWidget, 2, 1); + upperLayout->addWidget(formatLabel, 2, 0); + upperLayout->addWidget(formatComboBox, 2, 1); - upperLayout->addWidget(formatLabel, 3, 0); - upperLayout->addWidget(formatComboBox, 3, 1); + upperLayout->addWidget(bannerCardLabel, 3, 0); + upperLayout->addWidget(bannerCardComboBox, 3, 1); - upperLayout->addWidget(bannerCardLabel, 4, 0); - upperLayout->addWidget(bannerCardComboBox, 4, 1); + upperLayout->addWidget(deckTagsDisplayWidget, 4, 1); upperLayout->addWidget(activeGroupCriteriaLabel, 5, 0); upperLayout->addWidget(activeGroupCriteriaComboBox, 5, 1);