diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2018-03-19 15:22:46 -0700 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2018-03-19 15:22:46 -0700 |
commit | ea7f49031df050ea42a5cb78d8a06bd9c8adfc56 (patch) | |
tree | 815f764146ba986cc16e6394421db7006edd7cee | |
parent | b8f45d0ec9bb0621b7c749c7d6a5162f61088a2b (diff) | |
download | subsurface-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.qs | 6 |
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); } |