Merge pull request #891 from pangeachat/dont-allow-wrong-choice-in-it

don't allow user to chose the incorrect choices in IT
pull/1476/head
ggurdin 1 year ago committed by GitHub
commit 583e765831
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -352,7 +352,7 @@ class ITChoices extends StatelessWidget {
void selectContinuance(int index, BuildContext context) {
final Continuance continuance =
controller.currentITStep!.continuances[index];
if (continuance.level == 1 || continuance.wasClicked) {
if (continuance.level == 1) {
Future.delayed(
const Duration(milliseconds: 500),
() => controller.selectTranslation(index),

Loading…
Cancel
Save