From 67947131650e930bcb83308640ff502e73d4d9d1 Mon Sep 17 00:00:00 2001 From: Jeremy Rimpo Date: Wed, 6 Dec 2017 20:41:03 -0600 Subject: Minor change to correct broken HTML tags --- src/modlist.cpp | 23 ++++++++++++----------- 1 file changed, 12 insertions(+), 11 deletions(-) (limited to 'src') diff --git a/src/modlist.cpp b/src/modlist.cpp index c6341251..081a5abf 100644 --- a/src/modlist.cpp +++ b/src/modlist.cpp @@ -1062,17 +1062,18 @@ QString ModList::getColumnToolTip(int column) case COL_FLAGS: return tr("Emblemes to highlight things that might require attention."); case COL_CONTENT: return tr("Depicts the content of the mod:
" "" - "" - "" - "" - "" - "" - "" - "" - "" - "" - "" - "" + "" + "" + "" + "" + "" + "" + "" + "" + "" + "" + "" + "" "
Game plugins (esp/esm/esl)
Interface
Meshes
BSA
Textures
Sounds
Music
Strings
Scripts (Papyrus)
Script Extender plugins
SkyProc Patcher
Game plugins (esp/esm/esl)
Interface
Meshes
BSA
Textures
Sounds
Music
Strings
Scripts (Papyrus)
Script Extender plugins
SkyProc Patcher
Mod Configuration Menu
"); case COL_INSTALLTIME: return tr("Time this mod was installed"); default: return tr("unknown"); -- cgit v1.3.1 From 88e218d83e77b0b382683f3028dabfaa1d65aefc Mon Sep 17 00:00:00 2001 From: Eran Mizrahi Date: Thu, 7 Dec 2017 18:22:37 +0200 Subject: Fix lootcli sorting when temp dir contains a space (i.e. user name has a space) --- src/mainwindow.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/mainwindow.cpp b/src/mainwindow.cpp index cdc32918..48dfdfbd 100644 --- a/src/mainwindow.cpp +++ b/src/mainwindow.cpp @@ -4273,7 +4273,7 @@ void MainWindow::on_bossButton_clicked() parameters << "--game" << m_OrganizerCore.managedGame()->gameShortName() << "--gamePath" << QString("\"%1\"").arg(m_OrganizerCore.managedGame()->gameDirectory().absolutePath()) << "--pluginListPath" << QString("\"%1/loadorder.txt\"").arg(m_OrganizerCore.profilePath()) - << "--out" << outPath; + << "--out" << QString("\"%1\"").arg(outPath); if (m_DidUpdateMasterList) { parameters << "--skipUpdateMasterlist"; -- cgit v1.3.1