From f16c552d970649e47ace5572f72e75ed3bc05c69 Mon Sep 17 00:00:00 2001 From: RickyRister <42636155+RickyRister@users.noreply.github.com> Date: Sat, 3 Jan 2026 16:08:39 -0800 Subject: [PATCH] [PrintingSelector] Don't refresh display if "bump cards to top" is off (#6486) --- .../widgets/printing_selector/printing_selector.cpp | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/cockatrice/src/interface/widgets/printing_selector/printing_selector.cpp b/cockatrice/src/interface/widgets/printing_selector/printing_selector.cpp index becfa16a3..94deaf135 100644 --- a/cockatrice/src/interface/widgets/printing_selector/printing_selector.cpp +++ b/cockatrice/src/interface/widgets/printing_selector/printing_selector.cpp @@ -90,8 +90,10 @@ void PrintingSelector::retranslateUi() void PrintingSelector::printingsInDeckChanged() { - // Delay the update to avoid race conditions - QTimer::singleShot(100, this, &PrintingSelector::updateDisplay); + if (SettingsCache::instance().getBumpSetsWithCardsInDeckToTop()) { + // Delay the update to avoid race conditions + QTimer::singleShot(100, this, &PrintingSelector::updateDisplay); + } } /**