summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Dirk Hohndel <dirk@hohndel.org>2018-03-19 15:22:46 -0700
committerGravatar Dirk Hohndel <dirk@hohndel.org>2018-03-19 15:22:46 -0700
commitea7f49031df050ea42a5cb78d8a06bd9c8adfc56 (patch)
tree815f764146ba986cc16e6394421db7006edd7cee
parentb8f45d0ec9bb0621b7c749c7d6a5162f61088a2b (diff)
downloadsubsurface-ea7f49031df050ea42a5cb78d8a06bd9c8adfc56.tar.gz
Fix non-interactive Qt installation for Android
We need to wait before clicking Next on the WelcomePage. We really only want the Android armv7 packages. Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
-rw-r--r--qt-installer-noninteractive.qs6
1 files changed, 3 insertions, 3 deletions
diff --git a/qt-installer-noninteractive.qs b/qt-installer-noninteractive.qs
index 7ac079e30..ef81a5ba7 100644
--- a/qt-installer-noninteractive.qs
+++ b/qt-installer-noninteractive.qs
@@ -9,7 +9,7 @@ function Controller() {
}
Controller.prototype.WelcomePageCallback = function() {
- gui.clickButton(buttons.NextButton);
+ gui.clickButton(buttons.NextButton,3000);
}
Controller.prototype.CredentialsPageCallback = function() {
@@ -31,8 +31,8 @@ Controller.prototype.TargetDirectoryPageCallback = function()
Controller.prototype.ComponentSelectionPageCallback = function() {
var widget = gui.currentPageWidget();
- widget.selectAll();
- widget.deselectComponent('qt.59.src');
+ widget.deselectAll();
+ widget.selectComponent('qt.qt5.5101.android_armv7');
gui.clickButton(buttons.NextButton);
}