From 1b1b31a2c21f629df3b066d2077922d5f98bd822 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lukas=20Br=C3=BCbach?= Date: Fri, 6 Dec 2024 03:07:36 +0100 Subject: [PATCH] Relabel buttons for clarity. --- .../printing_selector_card_selection_widget.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cockatrice/src/client/ui/widgets/printing_selector/printing_selector_card_selection_widget.cpp b/cockatrice/src/client/ui/widgets/printing_selector/printing_selector_card_selection_widget.cpp index 595f7fe46..f620929ee 100644 --- a/cockatrice/src/client/ui/widgets/printing_selector/printing_selector_card_selection_widget.cpp +++ b/cockatrice/src/client/ui/widgets/printing_selector/printing_selector_card_selection_widget.cpp @@ -4,10 +4,10 @@ PrintingSelectorCardSelectionWidget::PrintingSelectorCardSelectionWidget(Printin { cardSelectionBarLayout = new QHBoxLayout(this); previousCardButton = new QPushButton(this); - previousCardButton->setText(tr("Previous Card")); + previousCardButton->setText(tr("Previous Card in Deck")); nextCardButton = new QPushButton(this); - nextCardButton->setText(tr("Next Card")); + nextCardButton->setText(tr("Next Card in Deck")); connectSignals();