From 2c9408eb4a5b153cc1afcdb155bb794bc63f79d0 Mon Sep 17 00:00:00 2001 From: Dan Macumber Date: Mon, 9 Dec 2024 17:40:44 -0700 Subject: [PATCH] Add back in method to click next on the select components page (leave all component selections to the defaults) and un-select run after install when using scripted installer. --- ci/install_script_qtifw.qs | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/ci/install_script_qtifw.qs b/ci/install_script_qtifw.qs index ad6a46bd3..bf63f6e5d 100644 --- a/ci/install_script_qtifw.qs +++ b/ci/install_script_qtifw.qs @@ -66,9 +66,9 @@ Controller.prototype.TargetDirectoryPageCallback = function() }; // Unused -//Controller.prototype.ComponentSelectionPageCallback = function() { - //console.log("---- COMPONENT SELECTION PAGE"); - //logCurrentPage(); +Controller.prototype.ComponentSelectionPageCallback = function() { + console.log("---- COMPONENT SELECTION PAGE"); + logCurrentPage(); //var widget = gui.currentPageWidget(); @@ -106,8 +106,8 @@ Controller.prototype.TargetDirectoryPageCallback = function() //console.log("* " + compName + ": " + installStatus); //} - //gui.clickButton(buttons.NextButton); -//}; + gui.clickButton(buttons.NextButton); +}; Controller.prototype.LicenseAgreementPageCallback = function() { console.log("---- LICENSE AGREEMENT PAGE"); @@ -153,6 +153,7 @@ Controller.prototype.PerformInstallationPageCallback = function() Controller.prototype.FinishedPageCallback = function() { console.log("---- FINISHED PAGE"); logCurrentPage(); + gui.currentPageWidget().RunItCheckBox.setChecked(false); gui.clickButton(buttons.FinishButton); };