[PrintingSelector] Don't refresh display if "bump cards to top" is off (#6486)

This commit is contained in:
RickyRister
2026-01-03 16:08:39 -08:00
committed by GitHub
parent 72a85b58cf
commit f16c552d97

View File

@@ -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);
}
}
/**