[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
main
Adriaan de Groot 5 years ago
parent ec605adf3f
commit 2a45765b93

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

Loading…
Cancel
Save