summaryrefslogtreecommitdiff
path: root/src/tutorials/tutorial_primer_main.js
diff options
context:
space:
mode:
authorSilarn <jrim@rimpo.org>2019-07-05 16:28:33 -0500
committerSilarn <jrim@rimpo.org>2019-07-05 16:28:33 -0500
commit5feff2f997f10724739ca12754f99806dfc61980 (patch)
tree95b7ddb3c77e20c104cc18903c304aed405d7aee /src/tutorials/tutorial_primer_main.js
parent9a795c3ce90bc221574e909db1665f2bc64800ed (diff)
parent7e760c700a89114909e607bd94a7c4ea5ed8319c (diff)
Merge remote-tracking branch 'origin/Develop' into qt-5.13
Diffstat (limited to 'src/tutorials/tutorial_primer_main.js')
-rw-r--r--src/tutorials/tutorial_primer_main.js12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/tutorials/tutorial_primer_main.js b/src/tutorials/tutorial_primer_main.js
index dd305c0c..7972cca4 100644
--- a/src/tutorials/tutorial_primer_main.js
+++ b/src/tutorials/tutorial_primer_main.js
@@ -99,8 +99,8 @@ function setupTooptips() {
tooltipAction("actionUpdate", qsTr("Activates if there is an update for MO. Please note that if, for any reason, MO can't communicate with NMM, this will not work either."))
tooltipAction("actionHelp", qsTr("Access more information about MO2, including these tutorials, a link to the development discord, information about the devs and dependencies."))
- switch (manager.findControl("tabWidget").currentIndex) {
- case 0:
+ switch (tutorialControl.getTabName("tabWidget")) {
+ case "espTab":
tooltipWidget("espList", qsTr("Plugins (esp/esm/esl files) of the mods in the current profile. They need to be checked to be loaded."))
tooltipWidget("bossButton", qsTr("Automatically sort plugins using the bundled LOOT application."))
tooltipWidget("restoreButton", qsTr("Restore a backup of your plugin list order."))
@@ -108,16 +108,16 @@ function setupTooptips() {
tooltipWidget("activePluginsCounter", qsTr("Counter of your total active plugins. Hover to see a breakdown of plugin types."))
tooltipWidget("espFilterEdit", qsTr("Quickly filter plugin list as you type."))
break
- case 1:
+ case "bsaTab":
tooltipWidget("bsaList", qsTr("All the asset archives (.bsa files) for all active mods."))
break
- case 2:
+ case "dataTab":
tooltipWidget("dataTree", qsTr("The directory tree and all files that the program will see."))
break
- case 3:
+ case "savesTab":
tooltipWidget("savegameList", qsTr("Save game browser. Shows all the saves for the current profile and whether or not the current mod-load status is correct."))
break
- case 4:
+ case "downloadTab":
tooltipWidget("downloadView", qsTr("Shows the mods that have been downloaded and if they’ve been installed."))
break
}