summaryrefslogtreecommitdiff
path: root/src/mainwindow.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mainwindow.cpp')
-rw-r--r--src/mainwindow.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mainwindow.cpp b/src/mainwindow.cpp
index b5beb229..cc681dba 100644
--- a/src/mainwindow.cpp
+++ b/src/mainwindow.cpp
@@ -3062,7 +3062,7 @@ void MainWindow::ignoreMissingData_clicked()
int row_idx = idx.data(Qt::UserRole + 1).toInt();
ModInfo::Ptr info = ModInfo::getByIndex(row_idx);
//QDir(info->absolutePath()).mkdir("textures");
- info->testValid();
+ info->diskContentModified();
info->markValidated(true);
connect(this, SIGNAL(modListDataChanged(QModelIndex, QModelIndex)), m_OrganizerCore.modList(), SIGNAL(dataChanged(QModelIndex, QModelIndex)));
@@ -3071,7 +3071,7 @@ void MainWindow::ignoreMissingData_clicked()
} else {
ModInfo::Ptr info = ModInfo::getByIndex(m_ContextRow);
//QDir(info->absolutePath()).mkdir("textures");
- info->testValid();
+ info->diskContentModified();
info->markValidated(true);
connect(this, SIGNAL(modListDataChanged(QModelIndex, QModelIndex)), m_OrganizerCore.modList(), SIGNAL(dataChanged(QModelIndex, QModelIndex)));