blob: 98ca660d8a996e6b4e209332949262bc13f0ce7a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
function getTutorialSteps() {
tutorialCanceller.visible = false
return [
function() {
tutorial.text = qsTr("Please switch to the \"Conflicts\"-Tab.")
highlightItem("tabWidget", true)
if (!tutorialControl.waitForTabOpen("tabWidget", "tabConflicts")) {
nextStep()
}
},
function() {
tutorial.text = qsTr("Here you can see two lists: a list of files that this mod overwrites that are also "
+ "provided by other mods, and a list of files in this mod which are overwritten by "
+ "one or more other mods.")
waitForClick()
},
function() {
tutorial.text = qsTr("Please close the information dialog.")
waitForClick()
}
]
}
|