Hiding "next" button on the final page

This commit is contained in:
Ilya Kitaev 2016-01-26 10:33:58 +03:00
parent 63e4d19a92
commit 3cfa176605

View file

@ -68,6 +68,9 @@ Rectangle {
// display settings summary
if (pages[currentPage] === finishPage) {
finishPage.updateSettingsSummary();
nextButton.visible = false
} else {
nextButton.visible = true
}
}