summaryrefslogtreecommitdiff
path: root/src/tutorials/tutorial_conflictresolution_modinfo.js
blob: 04691ef6dee3a3d3dc13fb1ceb6c2d9362e630b7 (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", "tabConflicts")) {
                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()
        }

    ]
}