summaryrefslogtreecommitdiff
path: root/src/modinfodialog.cpp
diff options
context:
space:
mode:
authorTannin <devnull@localhost>2014-06-29 15:09:45 +0200
committerTannin <devnull@localhost>2014-06-29 15:09:45 +0200
commit6e4626852cc72b4869c07399ef7cc8eeaa447acc (patch)
tree94f1525b21fe1cdd3776685d2d2989e62e6536e1 /src/modinfodialog.cpp
parente8f56d65d2956ca1a848d707dccabef2643b7c48 (diff)
- re-inserted code for bsa hiding (this was necessary to enforce expected bsa order after all)
- bsas from foreign bsas are now loaded as expected by hook.dll as well - state of log-window-split is now saved - auto completion in installer name boxes is now case-sensitive so that users can change casing of the mod names - bugfix: self updater did enforce the skyrim url for MO updates but not the game_id - bugfix: modinfo dialog didn't correctly read mod meta information on opening - bugfix: MO didn't report on endorsement (for MO)
Diffstat (limited to 'src/modinfodialog.cpp')
-rw-r--r--src/modinfodialog.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/modinfodialog.cpp b/src/modinfodialog.cpp
index fa8a9a77..db6c7123 100644
--- a/src/modinfodialog.cpp
+++ b/src/modinfodialog.cpp
@@ -70,6 +70,8 @@ ModInfoDialog::ModInfoDialog(ModInfo::Ptr modInfo, const DirectoryEntry *directo
this->setWindowTitle(modInfo->name());
this->setWindowModality(Qt::WindowModal);
+ m_RootPath = modInfo->absolutePath();
+
QString metaFileName = m_RootPath.mid(0).append("/meta.ini");
m_Settings = new QSettings(metaFileName, QSettings::IniFormat);
@@ -152,7 +154,6 @@ void ModInfoDialog::initINITweaks()
void ModInfoDialog::initFiletree(ModInfo::Ptr modInfo)
{
- m_RootPath = modInfo->absolutePath();
ui->fileTree = findChild<QTreeView*>("fileTree");
m_FileSystemModel = new QFileSystemModel(this);