[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
This commit is contained in:
Adriaan de Groot 2019-11-27 12:17:33 +01:00
parent ec605adf3f
commit 2a45765b93

View File

@ -211,5 +211,5 @@ LicensePage::checkAcceptance( bool checked )
{ {
ui->acceptFrame->setStyleSheet( "#acceptFrame { padding: 3px }" ); ui->acceptFrame->setStyleSheet( "#acceptFrame { padding: 3px }" );
} }
emit nextStatusChanged( checked ); emit nextStatusChanged( m_isNextEnabled );
} }