Remove game from list after deletion (#1730)

This commit is contained in:
DanielSvoboda
2024-12-10 10:40:54 -03:00
committed by GitHub
parent e5e1aba241
commit 00543fe640

View File

@@ -360,6 +360,7 @@ public:
QMessageBox::Yes | QMessageBox::No); QMessageBox::Yes | QMessageBox::No);
if (reply == QMessageBox::Yes) { if (reply == QMessageBox::Yes) {
dir.removeRecursively(); dir.removeRecursively();
widget->removeRow(itemID);
} }
} }
} }