Update to qt 5.10 on linux, Fix issues with Qt's new installer

This commit is contained in:
Zion Nimchuk
2017-12-10 15:51:08 -08:00
committed by Ivan
parent 04d6c80da5
commit a122924c8e
2 changed files with 12 additions and 11 deletions
+3 -2
View File
@@ -9,7 +9,8 @@ function Controller() {
}
Controller.prototype.WelcomePageCallback = function() {
gui.clickButton(buttons.NextButton);
// Wait 10 seconds to load licenses and such.
gui.clickButton(buttons.NextButton, 10000);
}
Controller.prototype.CredentialsPageCallback = function() {
@@ -32,7 +33,7 @@ Controller.prototype.ComponentSelectionPageCallback = function() {
var widget = gui.currentPageWidget();
widget.deselectAll();
widget.selectComponent("qt.593.gcc_64");
widget.selectComponent("qt.qt5.5100.gcc_64");
gui.clickButton(buttons.NextButton);
}