summaryrefslogtreecommitdiff
path: root/src/mainwindow.cpp
diff options
context:
space:
mode:
authorAl12rs <gabriel.cortesi@outlook.com>2018-07-21 20:01:40 +0200
committerAl12rs <gabriel.cortesi@outlook.com>2018-07-21 20:01:40 +0200
commit8f28e0af36d6246f1230a8aa296cfd5485b34242 (patch)
tree1e6667addb1c4f44f3b9c1621cff829199b5416f /src/mainwindow.cpp
parente80bb3a8370aeea37183d94f62e7bb3a843722b5 (diff)
Temporarely disable the BSA list refresh if it is hidden from view. this will need to be reversted once the Bsa changes are added I presume.
Diffstat (limited to 'src/mainwindow.cpp')
-rw-r--r--src/mainwindow.cpp5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/mainwindow.cpp b/src/mainwindow.cpp
index 2e14a201..f2a17c17 100644
--- a/src/mainwindow.cpp
+++ b/src/mainwindow.cpp
@@ -2544,7 +2544,10 @@ void MainWindow::displayModInformation(ModInfo::Ptr modInfo, unsigned int index,
, modInfo->stealFiles()
, modInfo->archives());
DirectoryRefresher::cleanStructure(m_OrganizerCore.directoryStructure());
- m_OrganizerCore.refreshLists();
+ //TODO: change this to always work once the BSA parsing is back in place.
+ if (ui->bsaList->isVisible())
+ m_OrganizerCore.refreshBSAList();
+ m_OrganizerCore.refreshESPList();
}
}
}