summaryrefslogtreecommitdiff
path: root/src/tutorials/tutorial_conflictresolution_modinfo.js
blob: b5ef461e74f4329e85cc502c4e4607743a0b43e6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
function getTutorialSteps() {
    return [
        function() {
            tutorial.text = qsTr("Please switch to the \"Conflicts\"-Tab.")
            highlightItem("tabWidget", true)
            if (!tutorialControl.waitForTabOpen("tabWidget", 4)) {
                nextStep()
            }
        },
        function() {
            tutorial.text = qsTr("Here you can see a list of files in this mod that out-prioritize others "
                                 +"in a file conflict and one with files where this mod is overridden.")
            waitForClick()
        },
        function() {
            tutorial.text = qsTr("Please close the information dialog again.")
            waitForClick()
        }

    ]
}