diff options
author | Konstantin Podsvirov <konstantin@podsvirov.pro> | 2016-07-12 22:20:44 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2016-07-13 14:02:12 (GMT) |
commit | 2aadb02f835313dd63a1f484f3c3c53c992932f1 (patch) | |
tree | 4e9e6eed8ec19a90b2beeac90f8ff5c8a020e5e9 | |
parent | 5399280873c55c88e2d592541600395166cefd8b (diff) | |
download | CMake-2aadb02f835313dd63a1f484f3c3c53c992932f1.zip CMake-2aadb02f835313dd63a1f484f3c3c53c992932f1.tar.gz CMake-2aadb02f835313dd63a1f484f3c3c53c992932f1.tar.bz2 |
QtIFW: Don't show component selection page if it don't need
-rw-r--r-- | Source/QtIFW/installscript.qs.in | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Source/QtIFW/installscript.qs.in b/Source/QtIFW/installscript.qs.in index 3411e34..39a8795 100644 --- a/Source/QtIFW/installscript.qs.in +++ b/Source/QtIFW/installscript.qs.in @@ -1,6 +1,7 @@ function Component() { - // default constructor + // Do not show component selection page + installer.setDefaultPageVisible(QInstaller.ComponentSelection, false); } Component.prototype.createOperations = function() |