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

This commit is contained in:
RickyRister 2026-01-03 01:35:11 -08:00
parent 4fbb9d9682
commit 53da39339d

View file

@ -90,8 +90,10 @@ void PrintingSelector::retranslateUi()
void PrintingSelector::printingsInDeckChanged() void PrintingSelector::printingsInDeckChanged()
{ {
// Delay the update to avoid race conditions if (SettingsCache::instance().getBumpSetsWithCardsInDeckToTop()) {
QTimer::singleShot(100, this, &PrintingSelector::updateDisplay); // Delay the update to avoid race conditions
QTimer::singleShot(100, this, &PrintingSelector::updateDisplay);
}
} }
/** /**