From 7c9dc303f8aa49dcedd83e480744168bd7b656bc Mon Sep 17 00:00:00 2001 From: patricktsullivan <93329749+patricktsullivan@users.noreply.github.com> Date: Sun, 27 Sep 2026 03:50:05 -0400 Subject: [PATCH] [Game] Make 'Put top cards on stack until...' history case-sensitive (#7358) --- .../src/game_graphics/dialogs/dlg_move_top_cards_until.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/cockatrice/src/game_graphics/dialogs/dlg_move_top_cards_until.cpp b/cockatrice/src/game_graphics/dialogs/dlg_move_top_cards_until.cpp index 2b54452ac..41c907163 100644 --- a/cockatrice/src/game_graphics/dialogs/dlg_move_top_cards_until.cpp +++ b/cockatrice/src/game_graphics/dialogs/dlg_move_top_cards_until.cpp @@ -1,5 +1,6 @@ #include "dlg_move_top_cards_until.h" +#include #include #include #include @@ -19,6 +20,7 @@ DlgMoveTopCardsUntil::DlgMoveTopCardsUntil(QWidget *parent, const MoveTopCardsUn exprComboBox = new QComboBox(this); exprComboBox->setFocus(); exprComboBox->setEditable(true); + exprComboBox->completer()->setCaseSensitivity(Qt::CaseSensitive); exprComboBox->setInsertPolicy(QComboBox::InsertAtTop); exprComboBox->insertItems(0, options.exprs); exprLabel->setBuddy(exprComboBox);