From 3cfa176605e916c918ec6e270e44f6a8e8ca1d34 Mon Sep 17 00:00:00 2001 From: Ilya Kitaev Date: Tue, 26 Jan 2016 10:33:58 +0300 Subject: [PATCH] Hiding "next" button on the final page --- wizard/WizardMain.qml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/wizard/WizardMain.qml b/wizard/WizardMain.qml index a024fb90..905e0c5f 100644 --- a/wizard/WizardMain.qml +++ b/wizard/WizardMain.qml @@ -68,6 +68,9 @@ Rectangle { // display settings summary if (pages[currentPage] === finishPage) { finishPage.updateSettingsSummary(); + nextButton.visible = false + } else { + nextButton.visible = true } }