()
| 1 | function getTutorialSteps() |
| 2 | { |
| 3 | tutorialCanceller.visible = false |
| 4 | return [ |
| 5 | function() { |
| 6 | tutorial.text = qsTr("This dialog tries to expose as much information about a mod as possible. " |
| 7 | +"Depending on the mod, this may include readmes, screenshots, optional plugins and so on. " |
| 8 | +"If a certain type of information was not found in a mod, the corresponding tab " |
| 9 | +"is grayed out.") |
| 10 | highlightItem("tabWidget", false) |
| 11 | waitForClick() |
| 12 | }, |
| 13 | function() { |
| 14 | tutorial.text = qsTr("If you installed the mod from Nexus, the corresponding tab should give you direct " |
| 15 | +"access to the mod page description, which can be refreshed directly from Nexus.") |
| 16 | waitForClick() |
| 17 | }, |
| 18 | function() { |
| 19 | unhighlight() |
| 20 | tutorial.text = qsTr("We may revisit this screen in later tutorials.") |
| 21 | waitForClick() |
| 22 | } |
| 23 | ] |
| 24 | } |
nothing calls this directly
no test coverage detected