From 2a45765b93e9c5aafa32dd59751c20452fce6aa7 Mon Sep 17 00:00:00 2001 From: Adriaan de Groot Date: Wed, 27 Nov 2019 12:17:33 +0100 Subject: [PATCH] [license] Next depends not just on the checked box - Toggling the checkbox could disable the next button because only the checked-state was used, instead of the next-is-enabled-if-everything-is-optional member variable. FIXES #1271 --- src/modules/license/LicensePage.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/license/LicensePage.cpp b/src/modules/license/LicensePage.cpp index 69dd0a9c6..c5ba38133 100644 --- a/src/modules/license/LicensePage.cpp +++ b/src/modules/license/LicensePage.cpp @@ -211,5 +211,5 @@ LicensePage::checkAcceptance( bool checked ) { ui->acceptFrame->setStyleSheet( "#acceptFrame { padding: 3px }" ); } - emit nextStatusChanged( checked ); + emit nextStatusChanged( m_isNextEnabled ); }