mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
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>
This commit is contained in:
parent
b8f45d0ec9
commit
ea7f49031d
1 changed files with 3 additions and 3 deletions
|
@ -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);
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue