diff options
| author | Silarn <jrim@rimpo.org> | 2019-07-05 18:40:03 -0500 |
|---|---|---|
| committer | Silarn <jrim@rimpo.org> | 2019-07-05 18:40:03 -0500 |
| commit | d2a8890e74595b6e0ef5cd1532b3f11e02349905 (patch) | |
| tree | 84d8b2d312b5cbe76e9a088f9fb0acf0897c450a /src/tutorials | |
| parent | 5feff2f997f10724739ca12754f99806dfc61980 (diff) | |
| parent | e8d14d1ea527608bdaae4fe8f83c949082067b16 (diff) | |
Merge branch 'Develop' into qt-5.13
Diffstat (limited to 'src/tutorials')
| -rw-r--r-- | src/tutorials/tutorial_firststeps_main.js | 5 | ||||
| -rw-r--r-- | src/tutorials/tutorial_firststeps_settings.js | 2 |
2 files changed, 4 insertions, 3 deletions
diff --git a/src/tutorials/tutorial_firststeps_main.js b/src/tutorials/tutorial_firststeps_main.js index 47545d24..96bfd0e7 100644 --- a/src/tutorials/tutorial_firststeps_main.js +++ b/src/tutorials/tutorial_firststeps_main.js @@ -27,8 +27,8 @@ function getTutorialSteps() function() {
console.log("next")
tutorial.text = qsTr("This button provides multiple sources of information and further tutorials.")
- if (tutorialControl.waitForButton("actionHelp")) {
- highlightItem("actionHelp", true)
+ if (tutorialControl.waitForAction("actionHelp")) {
+ highlightAction("actionHelp", true)
} else {
console.error("help button broken")
waitForClick()
@@ -36,6 +36,7 @@ function getTutorialSteps() },
function() {
+ unhighlight()
tutorial.text = qsTr("Finally there are tooltips on almost every part of Mod Organizer. If there is a control "
+ "in MO you don't understand, please try hovering over it to get a short description or "
+ "use \"Help on UI\" from the help menu to get a longer explanation")
diff --git a/src/tutorials/tutorial_firststeps_settings.js b/src/tutorials/tutorial_firststeps_settings.js index ed49d97f..792712be 100644 --- a/src/tutorials/tutorial_firststeps_settings.js +++ b/src/tutorials/tutorial_firststeps_settings.js @@ -4,7 +4,7 @@ function getTutorialSteps() function() {
highlightItem("tabWidget", true)
tutorial.text = qsTr("You can use your regular browser to download from Nexus.\nPlease open the \"Nexus\"-tab")
- tutorialControl.waitForTabOpen("tabWidget", "tabNexus")
+ tutorialControl.waitForTabOpen("tabWidget", "nexusTab")
},
function() {
|
