Hide Loading Msg in VDE when not relevant

This commit is contained in:
ZeldaZach 2025-01-16 00:06:25 -05:00
parent 82b257b589
commit 55f624b634
No known key found for this signature in database

View file

@ -55,6 +55,7 @@ VisualDeckStorageWidget::VisualDeckStorageWidget(QWidget *parent) : QWidget(pare
// Don't waste time processing the cards if they're going to get refreshed anyway once the db finishes loading
if (CardDatabaseManager::getInstance()->getLoadStatus() == LoadStatus::Ok) {
refreshBannerCards();
databaseLoadIndicator->setVisible(false);
} else {
flowWidget->addWidget(databaseLoadIndicator);
}